diff options
author | Jiri Pirko | 2013-12-07 19:26:55 +0100 |
---|---|---|
committer | David S. Miller | 2013-12-09 20:56:12 -0500 |
commit | 73af614aedd221df8495fc8c9993c50e87f899f2 (patch) | |
tree | 66eaab080b5add40cf2fc06f194d1c808bb2ec60 /net/ipv6/addrconf.c | |
parent | cb5b09c17fe60056bc8f127ffc987d361c40ed4b (diff) |
neigh: use tbl->family to distinguish ipv4 from ipv6
Signed-off-by: Jiri Pirko <jiri@resnulli.us>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6/addrconf.c')
-rw-r--r-- | net/ipv6/addrconf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv6/addrconf.c b/net/ipv6/addrconf.c index 55dc56f9072c..ea8a475fa8c5 100644 --- a/net/ipv6/addrconf.c +++ b/net/ipv6/addrconf.c @@ -5028,7 +5028,7 @@ static void __addrconf_sysctl_unregister(struct ipv6_devconf *p) static void addrconf_sysctl_register(struct inet6_dev *idev) { - neigh_sysctl_register(idev->dev, idev->nd_parms, "ipv6", + neigh_sysctl_register(idev->dev, idev->nd_parms, &ndisc_ifinfo_sysctl_change); __addrconf_sysctl_register(dev_net(idev->dev), idev->dev->name, idev, &idev->cnf); |