diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2006-11-20 20:11:50 -0500 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2006-12-03 00:26:50 -0500 |
commit | 6c7be55ca0c204473d07a030a03c49a7471b4508 (patch) | |
tree | d1dd7c14a0b723523834ecc09199fbfe9e50139f /net/sctp/socket.c | |
parent | cd4ff034e3572679f7ff8f126469b3addd1a4fbc (diff) |
[SCTP]: sctp_has_association() switched to net-endian.
Ditto for its only caller (sctp_endpoint_is_peeled_off)
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sctp/socket.c')
-rw-r--r-- | net/sctp/socket.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/sctp/socket.c b/net/sctp/socket.c index 6beaa7821ca6..e118e3c1285e 100644 --- a/net/sctp/socket.c +++ b/net/sctp/socket.c | |||
@@ -1018,7 +1018,7 @@ static int __sctp_connect(struct sock* sk, | |||
1018 | * make sure that there is no peeled-off association matching | 1018 | * make sure that there is no peeled-off association matching |
1019 | * the peer address even on another socket. | 1019 | * the peer address even on another socket. |
1020 | */ | 1020 | */ |
1021 | if (sctp_endpoint_is_peeled_off(ep, &to)) { | 1021 | if (sctp_endpoint_is_peeled_off(ep, sa_addr)) { |
1022 | err = -EADDRNOTAVAIL; | 1022 | err = -EADDRNOTAVAIL; |
1023 | goto out_free; | 1023 | goto out_free; |
1024 | } | 1024 | } |
@@ -1475,7 +1475,7 @@ SCTP_STATIC int sctp_sendmsg(struct kiocb *iocb, struct sock *sk, | |||
1475 | */ | 1475 | */ |
1476 | if ((sctp_style(sk, TCP) && | 1476 | if ((sctp_style(sk, TCP) && |
1477 | sctp_sstate(sk, ESTABLISHED)) || | 1477 | sctp_sstate(sk, ESTABLISHED)) || |
1478 | sctp_endpoint_is_peeled_off(ep, &to)) { | 1478 | sctp_endpoint_is_peeled_off(ep, &tmp)) { |
1479 | err = -EADDRNOTAVAIL; | 1479 | err = -EADDRNOTAVAIL; |
1480 | goto out_unlock; | 1480 | goto out_unlock; |
1481 | } | 1481 | } |