]> Pileus Git - ~andy/linux/commitdiff
ipv6 mcast: Use ipv6_addr_equal() in ip6_mc_source().
authorYOSHIFUJI Hideaki / 吉藤英明 <yoshfuji@linux-ipv6.org>
Tue, 29 Jan 2013 12:48:23 +0000 (12:48 +0000)
committerDavid S. Miller <davem@davemloft.net>
Wed, 30 Jan 2013 03:58:40 +0000 (22:58 -0500)
Signed-off-by: YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/ipv6/mcast.c

index f25002aaf624dd4bca40e7303930bc773e2132f5..8460a1f54a76fc8a59c37b3d3bb8ca665a13f73e 100644 (file)
@@ -376,8 +376,7 @@ int ip6_mc_source(int add, int omode, struct sock *sk,
                        goto done;      /* err = -EADDRNOTAVAIL */
                rv = !0;
                for (i=0; i<psl->sl_count; i++) {
-                       rv = memcmp(&psl->sl_addr[i], source,
-                               sizeof(struct in6_addr));
+                       rv = !ipv6_addr_equal(&psl->sl_addr[i], source);
                        if (rv == 0)
                                break;
                }
@@ -427,7 +426,7 @@ int ip6_mc_source(int add, int omode, struct sock *sk,
        }
        rv = 1; /* > 0 for insert logic below if sl_count is 0 */
        for (i=0; i<psl->sl_count; i++) {
-               rv = memcmp(&psl->sl_addr[i], source, sizeof(struct in6_addr));
+               rv = !ipv6_addr_equal(&psl->sl_addr[i], source);
                if (rv == 0)
                        break;
        }