Commit b7ab2e9c authored by Hideaki Yoshifuji's avatar Hideaki Yoshifuji Committed by David S. Miller

[IPV6]: Fix bogus semicolon typo in mcast.c

parent 14a32d80
...@@ -604,9 +604,9 @@ int inet6_mc_check(struct sock *sk, struct in6_addr *mc_addr, ...@@ -604,9 +604,9 @@ int inet6_mc_check(struct sock *sk, struct in6_addr *mc_addr,
if (ipv6_addr_cmp(&psl->sl_addr[i], src_addr) == 0) if (ipv6_addr_cmp(&psl->sl_addr[i], src_addr) == 0)
break; break;
} }
if (mc->sfmode == MCAST_INCLUDE && i >= psl->sl_count); if (mc->sfmode == MCAST_INCLUDE && i >= psl->sl_count)
rv = 0; rv = 0;
if (mc->sfmode == MCAST_EXCLUDE && i < psl->sl_count); if (mc->sfmode == MCAST_EXCLUDE && i < psl->sl_count)
rv = 0; rv = 0;
} }
read_unlock(&ipv6_sk_mc_lock); read_unlock(&ipv6_sk_mc_lock);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment