diff options
author | Alexey Dobriyan <adobriyan@gmail.com> | 2006-05-22 16:53:22 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2006-05-22 16:53:22 -0700 |
commit | 4195f81453b9727f82bb8ceae03411b7fe52a994 (patch) | |
tree | 061d410408c883058afbbbbc39b4276ac359dc03 /net/ipv6 | |
parent | ae181bc44c65fdc93d0d2d908534b22e43f60f56 (diff) | |
download | linux-4195f81453b9727f82bb8ceae03411b7fe52a994.tar.gz linux-4195f81453b9727f82bb8ceae03411b7fe52a994.tar.bz2 linux-4195f81453b9727f82bb8ceae03411b7fe52a994.zip |
[NET]: Fix "ntohl(ntohs" bugs
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/ipcomp6.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv6/ipcomp6.c b/net/ipv6/ipcomp6.c index 05eb67def39f..48636436028a 100644 --- a/net/ipv6/ipcomp6.c +++ b/net/ipv6/ipcomp6.c @@ -208,7 +208,7 @@ static void ipcomp6_err(struct sk_buff *skb, struct inet6_skb_parm *opt, if (type != ICMPV6_DEST_UNREACH && type != ICMPV6_PKT_TOOBIG) return; - spi = ntohl(ntohs(ipcomph->cpi)); + spi = htonl(ntohs(ipcomph->cpi)); x = xfrm_state_lookup((xfrm_address_t *)&iph->daddr, spi, IPPROTO_COMP, AF_INET6); if (!x) return; |