]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commitdiff
[IPV6]: Endian fix in net/ipv6/netfilter/ip6t_eui64.c:match().
authorAlexey Dobriyan <adobriyan@gmail.com>
Tue, 16 May 2006 22:24:41 +0000 (15:24 -0700)
committerDavid S. Miller <davem@davemloft.net>
Tue, 16 May 2006 22:24:41 +0000 (15:24 -0700)
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/ipv6/netfilter/ip6t_eui64.c

index 94dbdb8b458d01fa1dc85cd42da93e5d84b85024..4f6b84c8f4ab6567cc70301d7bdcc2460eabb38a 100644 (file)
@@ -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);