diff options
author | YOSHIFUJI Hideaki / 吉藤英明 <yoshfuji@linux-ipv6.org> | 2013-03-09 09:11:57 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-03-10 16:49:35 -0400 |
commit | 9026c4927254f5bea695cc3ef2e255280e6a3011 (patch) | |
tree | 5551c57fb197eea9ad2fe16430d75d9ef0f31d34 /net | |
parent | fef4c86e59a76f2ec1a77d5732f40752700bd5dd (diff) | |
download | linux-3.10-9026c4927254f5bea695cc3ef2e255280e6a3011.tar.gz linux-3.10-9026c4927254f5bea695cc3ef2e255280e6a3011.tar.bz2 linux-3.10-9026c4927254f5bea695cc3ef2e255280e6a3011.zip |
6lowpan: Fix endianness issue in is_addr_link_local().
Signed-off-by: YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r-- | net/ieee802154/6lowpan.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ieee802154/6lowpan.h b/net/ieee802154/6lowpan.h index 8c2251fb0a3..bba5f833631 100644 --- a/net/ieee802154/6lowpan.h +++ b/net/ieee802154/6lowpan.h @@ -84,7 +84,7 @@ (memcmp(addr1, addr2, length >> 3) == 0) /* local link, i.e. FE80::/10 */ -#define is_addr_link_local(a) (((a)->s6_addr16[0]) == 0x80FE) +#define is_addr_link_local(a) (((a)->s6_addr16[0]) == htons(0xFE80)) /* * check whether we can compress the IID to 16 bits, |