diff options
author | Marcel Holtmann <marcel@holtmann.org> | 2014-07-30 03:48:42 +0200 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2014-07-30 19:28:40 +0200 |
commit | 26fff593cd7fea82e2a287a65fa6951eef7f9cd6 (patch) | |
tree | ed90eb17929984ab3ec5df58dc793c0f54804639 /net/6lowpan | |
parent | 7fc4cfda757d5d8f31ba2ebb07b3fb31ae6986bc (diff) | |
download | linux-26fff593cd7fea82e2a287a65fa6951eef7f9cd6.tar.gz linux-26fff593cd7fea82e2a287a65fa6951eef7f9cd6.tar.bz2 linux-26fff593cd7fea82e2a287a65fa6951eef7f9cd6.zip |
6lowpan: iphc: Fix missing blank line after variable declarations
WARNING: Missing a blank line after declarations
+ struct sk_buff *new;
+ if (uncompress_udp_header(skb, &uh))
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
Diffstat (limited to 'net/6lowpan')
-rw-r--r-- | net/6lowpan/iphc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/6lowpan/iphc.c b/net/6lowpan/iphc.c index c718253a4e07..e6cf68e8667f 100644 --- a/net/6lowpan/iphc.c +++ b/net/6lowpan/iphc.c @@ -462,6 +462,7 @@ int lowpan_process_data(struct sk_buff *skb, struct net_device *dev, if (iphc0 & LOWPAN_IPHC_NH_C) { struct udphdr uh; struct sk_buff *new; + if (uncompress_udp_header(skb, &uh)) goto drop; |