diff -u -p linux/net/irda/irlap_frame.d0.c linux/net/irda/irlap_frame.c --- linux/net/irda/irlap_frame.d0.c Mon Apr 7 17:35:46 2003 +++ linux/net/irda/irlap_frame.c Mon Apr 7 17:36:42 2003 @@ -162,8 +162,8 @@ static void irlap_recv_snrm_cmd(struct i frame = (struct snrm_frame *) skb->data; if (skb->len >= sizeof(struct snrm_frame)) { - /* Copy the new connection address */ - info->caddr = frame->ncaddr; + /* Copy the new connection address ignoring the C/R bit */ + info->caddr = frame->ncaddr & 0xFE; /* Check if the new connection address is valid */ if ((info->caddr == 0x00) || (info->caddr == 0xfe)) {