diff options
author | Alexey Dobriyan <adobriyan@gmail.com> | 2006-05-16 15:24:41 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2006-05-16 15:24:41 -0700 |
commit | d8fd0a73169e90022dc3ccf3083ca24573b44b5c (patch) | |
tree | 0147645272a7d86fcfe102b9ce694ebe7f8bcc03 /net/ipv6 | |
parent | 6599519e9c6c56ff0f9a4ffd53f90c5b65b902f4 (diff) |
[IPV6]: Endian fix in net/ipv6/netfilter/ip6t_eui64.c:match().
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6')
-rw-r--r-- | net/ipv6/netfilter/ip6t_eui64.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv6/netfilter/ip6t_eui64.c b/net/ipv6/netfilter/ip6t_eui64.c index 94dbdb8b458..4f6b84c8f4a 100644 --- a/net/ipv6/netfilter/ip6t_eui64.c +++ b/net/ipv6/netfilter/ip6t_eui64.c @@ -40,7 +40,7 @@ match(const struct sk_buff *skb, memset(eui64, 0, sizeof(eui64)); - if (eth_hdr(skb)->h_proto == ntohs(ETH_P_IPV6)) { + if (eth_hdr(skb)->h_proto == htons(ETH_P_IPV6)) { if (skb->nh.ipv6h->version == 0x6) { memcpy(eui64, eth_hdr(skb)->h_source, 3); memcpy(eui64 + 5, eth_hdr(skb)->h_source + 3, 3); |