diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2006-11-08 09:21:01 +0100 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2006-12-03 06:21:12 +0100 |
commit | 04ce69093f91547d3a7c4fc815d2868195591340 (patch) | |
tree | 69bea18b5d1b8c2999f13f8e0372491c9f9238e6 /net/ipv6/icmp.c | |
parent | [XFRM]: misc annotations (diff) | |
download | linux-04ce69093f91547d3a7c4fc815d2868195591340.tar.xz linux-04ce69093f91547d3a7c4fc815d2868195591340.zip |
[IPV6]: 'info' argument of ipv6 ->err_handler() is net-endian
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6/icmp.c')
-rw-r--r-- | net/ipv6/icmp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv6/icmp.c b/net/ipv6/icmp.c index 4ec876066b3f..81bd45b26c98 100644 --- a/net/ipv6/icmp.c +++ b/net/ipv6/icmp.c @@ -555,7 +555,7 @@ out: icmpv6_xmit_unlock(); } -static void icmpv6_notify(struct sk_buff *skb, int type, int code, u32 info) +static void icmpv6_notify(struct sk_buff *skb, int type, int code, __be32 info) { struct in6_addr *saddr, *daddr; struct inet6_protocol *ipprot; |