[SCTP] Use ipv6_addr_any() rather than ipv6_addr_type() in sctp_v6_is_any().
Signed-off-by: Brian Haley <Brian.Haley@hp.com> Signed-off-by: Sridhar Samudrala <sri@us.ibm.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
047a2428a1
commit
b9b9e10f18
@@ -496,9 +496,7 @@ static void sctp_v6_inaddr_any(union sctp_addr *addr, unsigned short port)
|
|||||||
/* Is this a wildcard address? */
|
/* Is this a wildcard address? */
|
||||||
static int sctp_v6_is_any(const union sctp_addr *addr)
|
static int sctp_v6_is_any(const union sctp_addr *addr)
|
||||||
{
|
{
|
||||||
int type;
|
return ipv6_addr_any(&addr->v6.sin6_addr);
|
||||||
type = ipv6_addr_type((struct in6_addr *)&addr->v6.sin6_addr);
|
|
||||||
return IPV6_ADDR_ANY == type;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Should this be available for binding? */
|
/* Should this be available for binding? */
|
||||||
|
Reference in New Issue
Block a user