Bluetooth: Fix error value for wrong FCS.
authorJoão Paulo Rechi Vita <jprvita@profusion.mobi>
Tue, 22 Jun 2010 16:56:27 +0000 (13:56 -0300)
committerMarcel Holtmann <marcel@holtmann.org>
Wed, 21 Jul 2010 17:39:10 +0000 (10:39 -0700)
Signed-off-by: João Paulo Rechi Vita <jprvita@profusion.mobi>
Acked-by: Gustavo F. Padovan <padovan@profusion.mobi>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
net/bluetooth/l2cap.c

index 58c81cbb4040ae5dadde424e2e1be60303595393..de545f1687d8fd8153d682bc65008826096501a1 100644 (file)
@@ -3423,7 +3423,7 @@ static int l2cap_check_fcs(struct l2cap_pinfo *pi,  struct sk_buff *skb)
                our_fcs = crc16(0, skb->data - hdr_size, skb->len + hdr_size);
 
                if (our_fcs != rcv_fcs)
-                       return -EINVAL;
+                       return -EBADMSG;
        }
        return 0;
 }