diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2006-11-20 17:10:03 -0800 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2006-12-02 21:26:45 -0800 |
commit | b488c7dd58f61e07b54e5d286c7b45c43dd52f1a (patch) | |
tree | 831da2d58f8f2eadaad340dd936074ad13fe4f97 /net/sctp/sm_statefuns.c | |
parent | d55c41b115e74b30a3d1a61db806bd03bdd9dd6f (diff) | |
download | blackbird-op-linux-b488c7dd58f61e07b54e5d286c7b45c43dd52f1a.tar.gz blackbird-op-linux-b488c7dd58f61e07b54e5d286c7b45c43dd52f1a.zip |
[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/sm_statefuns.c')
-rw-r--r-- | net/sctp/sm_statefuns.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/net/sctp/sm_statefuns.c b/net/sctp/sm_statefuns.c index 174acc3c5526..c5362638d672 100644 --- a/net/sctp/sm_statefuns.c +++ b/net/sctp/sm_statefuns.c @@ -5105,6 +5105,7 @@ static struct sctp_packet *sctp_ootb_pkt_new(const struct sctp_association *asoc __u16 sport; __u16 dport; __u32 vtag; + union sctp_addr tmp; /* Get the source and destination port from the inbound packet. */ sport = ntohs(chunk->sctp_hdr->dest); @@ -5135,7 +5136,8 @@ static struct sctp_packet *sctp_ootb_pkt_new(const struct sctp_association *asoc } /* Make a transport for the bucket, Eliza... */ - transport = sctp_transport_new(sctp_source(chunk), GFP_ATOMIC); + flip_to_n(&tmp, sctp_source(chunk)); + transport = sctp_transport_new(&tmp, GFP_ATOMIC); if (!transport) goto nomem; |