diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2006-02-18 21:02:18 (GMT) |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2006-02-18 21:02:18 (GMT) |
commit | cc6cdac0cf11955dc81d6c50b6738d05e1dca12b (patch) | |
tree | 7d5d033ea4f59605ae0d8c21e1284af999ba6fb2 /net/ipv6/ip6_tunnel.c | |
parent | 00fc00df9e7b637cd13fe1f163da0a2957273947 (diff) | |
download | linux-fsl-qoriq-cc6cdac0cf11955dc81d6c50b6738d05e1dca12b.tar.xz |
[PATCH] missing ntohs() in ip6_tunnel
->payload_len is net-endian
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'net/ipv6/ip6_tunnel.c')
-rw-r--r-- | net/ipv6/ip6_tunnel.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv6/ip6_tunnel.c b/net/ipv6/ip6_tunnel.c index 92ead3c..faea8a1 100644 --- a/net/ipv6/ip6_tunnel.c +++ b/net/ipv6/ip6_tunnel.c @@ -458,7 +458,7 @@ ip6ip6_err(struct sk_buff *skb, struct inet6_skb_parm *opt, mtu = IPV6_MIN_MTU; t->dev->mtu = mtu; - if ((len = sizeof (*ipv6h) + ipv6h->payload_len) > mtu) { + if ((len = sizeof (*ipv6h) + ntohs(ipv6h->payload_len)) > mtu) { rel_type = ICMPV6_PKT_TOOBIG; rel_code = 0; rel_info = mtu; |