diff options
author | YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org> | 2008-04-10 02:42:07 -0400 |
---|---|---|
committer | YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org> | 2008-04-11 06:47:55 -0400 |
commit | caad295fed8b652c67159911d11c65d476351d2f (patch) | |
tree | a254d67f1b39ed6aa3f2bbbaf8fde049c1bd804b /net/ipv6/addrconf.c | |
parent | ff4e1fb0be7386e97580d50f09a804b33b58377a (diff) |
[IPV6]: Use ipv6_addr_equal() instead of !ipv6_addr_cmp().
Signed-off-by: YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
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 924158393d04..ed9938014cf9 100644 --- a/net/ipv6/addrconf.c +++ b/net/ipv6/addrconf.c | |||
@@ -2951,7 +2951,7 @@ int ipv6_chk_home_addr(struct net *net, struct in6_addr *addr) | |||
2951 | for (ifp = inet6_addr_lst[hash]; ifp; ifp = ifp->lst_next) { | 2951 | for (ifp = inet6_addr_lst[hash]; ifp; ifp = ifp->lst_next) { |
2952 | if (!net_eq(dev_net(ifp->idev->dev), net)) | 2952 | if (!net_eq(dev_net(ifp->idev->dev), net)) |
2953 | continue; | 2953 | continue; |
2954 | if (ipv6_addr_cmp(&ifp->addr, addr) == 0 && | 2954 | if (ipv6_addr_equal(&ifp->addr, addr) && |
2955 | (ifp->flags & IFA_F_HOMEADDRESS)) { | 2955 | (ifp->flags & IFA_F_HOMEADDRESS)) { |
2956 | ret = 1; | 2956 | ret = 1; |
2957 | break; | 2957 | break; |