diff options
author | alex.bluesman.smirnov@gmail.com <alex.bluesman.smirnov@gmail.com> | 2012-06-25 03:49:02 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-06-25 16:40:31 -0700 |
commit | 5c00c0cba5d4e5371492dda8d642dd4d5788e905 (patch) | |
tree | 51da0a7a8b3cb039a0a8b3345927a3f5106dc700 /net/ieee802154 | |
parent | c5d3687f6cfed185c2c0b29a5b33273ebd2c0781 (diff) | |
download | linux-3.10-5c00c0cba5d4e5371492dda8d642dd4d5788e905.tar.gz linux-3.10-5c00c0cba5d4e5371492dda8d642dd4d5788e905.tar.bz2 linux-3.10-5c00c0cba5d4e5371492dda8d642dd4d5788e905.zip |
6lowpan: fix hop limit compression
Add missing pointer shift for the 'default' case.
Signed-off-by: Alexander Smirnov <alex.bluesman.smirnov@gmail.com>
Cc: Tony Cheneau <tony.cheneau+zigbeedev@amnesiak.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ieee802154')
-rw-r--r-- | net/ieee802154/6lowpan.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/ieee802154/6lowpan.c b/net/ieee802154/6lowpan.c index 5c7bcf9663d..b45e229bc42 100644 --- a/net/ieee802154/6lowpan.c +++ b/net/ieee802154/6lowpan.c @@ -492,6 +492,7 @@ static int lowpan_header_create(struct sk_buff *skb, break; default: *hc06_ptr = hdr->hop_limit; + hc06_ptr += 1; break; } |