diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2006-11-20 20:10:03 -0500 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2006-12-03 00:26:45 -0500 |
commit | b488c7dd58f61e07b54e5d286c7b45c43dd52f1a (patch) | |
tree | 831da2d58f8f2eadaad340dd936074ad13fe4f97 /net/sctp/associola.c | |
parent | d55c41b115e74b30a3d1a61db806bd03bdd9dd6f (diff) |
[SCTP]: sctp_transport_{init,new}() switched to net-endian.
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sctp/associola.c')
-rw-r--r-- | net/sctp/associola.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sctp/associola.c b/net/sctp/associola.c index 4bd916c808c1..7824aeaa3d60 100644 --- a/net/sctp/associola.c +++ b/net/sctp/associola.c | |||
@@ -564,7 +564,7 @@ struct sctp_transport *sctp_assoc_add_peer(struct sctp_association *asoc, | |||
564 | return peer; | 564 | return peer; |
565 | } | 565 | } |
566 | 566 | ||
567 | peer = sctp_transport_new(addr, gfp); | 567 | peer = sctp_transport_new(&tmp, gfp); |
568 | if (!peer) | 568 | if (!peer) |
569 | return NULL; | 569 | return NULL; |
570 | 570 | ||