diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2006-11-20 20:08:09 -0500 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2006-12-03 00:26:40 -0500 |
commit | 1c7d1fc14974f44809b22521bd9796411d8ba440 (patch) | |
tree | 11e7c6f95ca995ccb7941adc5912ee82eb52b130 /net/sctp/endpointola.c | |
parent | c9a08505ec0a0260fc94a823c014cc3970f72d25 (diff) |
[SCTP]: Switch sctp_endpoint_is_match() to net-endian.
The only caller (__sctp_rcv_lookup_endpoint()) also switched,
its caller adjusted
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sctp/endpointola.c')
-rw-r--r-- | net/sctp/endpointola.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/net/sctp/endpointola.c b/net/sctp/endpointola.c index 7c781d663603..c543f3250645 100644 --- a/net/sctp/endpointola.c +++ b/net/sctp/endpointola.c | |||
@@ -228,12 +228,10 @@ struct sctp_endpoint *sctp_endpoint_is_match(struct sctp_endpoint *ep, | |||
228 | const union sctp_addr *laddr) | 228 | const union sctp_addr *laddr) |
229 | { | 229 | { |
230 | struct sctp_endpoint *retval; | 230 | struct sctp_endpoint *retval; |
231 | union sctp_addr tmp; | ||
232 | flip_to_n(&tmp, laddr); | ||
233 | 231 | ||
234 | sctp_read_lock(&ep->base.addr_lock); | 232 | sctp_read_lock(&ep->base.addr_lock); |
235 | if (ep->base.bind_addr.port == laddr->v4.sin_port) { | 233 | if (htons(ep->base.bind_addr.port) == laddr->v4.sin_port) { |
236 | if (sctp_bind_addr_match(&ep->base.bind_addr, &tmp, | 234 | if (sctp_bind_addr_match(&ep->base.bind_addr, laddr, |
237 | sctp_sk(ep->base.sk))) { | 235 | sctp_sk(ep->base.sk))) { |
238 | retval = ep; | 236 | retval = ep; |
239 | goto out; | 237 | goto out; |