diff options
author | FX Le Bail <fx.lebail@yahoo.com> | 2014-01-13 15:59:01 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-01-14 18:18:22 -0800 |
commit | ec35b61ea59aa6b1ecc8d8452b225e4677e32627 (patch) | |
tree | e1ca5bd62514639fce20cc381d51feac1ed6bf36 /net/ipv6/icmp.c | |
parent | 0e864b21e5080bc3f178a4729bc4f7bca77188bc (diff) |
IPv6: move the anycast_src_echo_reply sysctl to netns_sysctl_ipv6
This change move anycast_src_echo_reply sysctl with other ipv6 sysctls.
Suggested-by: Hannes Frederic Sowa <hannes@stressinduktion.org>
Signed-off-by: Francois-Xavier Le Bail <fx.lebail@yahoo.com>
Acked-by: Hannes Frederic Sowa <hannes@stressinduktion.org>
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 8003b4930267..902405dc258c 100644 --- a/net/ipv6/icmp.c +++ b/net/ipv6/icmp.c @@ -559,7 +559,7 @@ static void icmpv6_echo_reply(struct sk_buff *skb) saddr = &ipv6_hdr(skb)->daddr; if (!ipv6_unicast_destination(skb) && - !(net->ipv6.anycast_src_echo_reply && + !(net->ipv6.sysctl.anycast_src_echo_reply && ipv6_anycast_destination(skb))) saddr = NULL; |