aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBjørn Mork <bjorn@mork.no>2013-11-01 06:16:53 -0400
committerDavid S. Miller <davem@davemloft.net>2013-11-02 02:02:03 -0400
commita26fd05debd00b6f4e776d9dca4a39f0b76b01c7 (patch)
treec15a696fb3ddca5ccf3cb0251ca47ad00c5daaf8
parent43c87f78388443e3bf6c73c05574bfa15b994f0a (diff)
net: cdc_ncm: log the length we warn about
Fix cut'n'paste typo. Log the bogus length and not the irrelevant signature. Cc: Alexey Orishko <alexey.orishko@gmail.com> Signed-off-by: Bjørn Mork <bjorn@mork.no> Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r--drivers/net/usb/cdc_ncm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/usb/cdc_ncm.c b/drivers/net/usb/cdc_ncm.c
index c40f742f6200..b5fdf8f16f5d 100644
--- a/drivers/net/usb/cdc_ncm.c
+++ b/drivers/net/usb/cdc_ncm.c
@@ -923,7 +923,7 @@ int cdc_ncm_rx_verify_ndp16(struct sk_buff *skb_in, int ndpoffset)
923 923
924 if (le16_to_cpu(ndp16->wLength) < USB_CDC_NCM_NDP16_LENGTH_MIN) { 924 if (le16_to_cpu(ndp16->wLength) < USB_CDC_NCM_NDP16_LENGTH_MIN) {
925 pr_debug("invalid DPT16 length <%u>\n", 925 pr_debug("invalid DPT16 length <%u>\n",
926 le32_to_cpu(ndp16->dwSignature)); 926 le16_to_cpu(ndp16->wLength));
927 goto error; 927 goto error;
928 } 928 }
929 929