aboutsummaryrefslogtreecommitdiffstats
path: root/net/sctp/sm_statefuns.c
diff options
context:
space:
mode:
authorAl Viro <viro@zeniv.linux.org.uk>2006-11-20 17:13:38 -0800
committerDavid S. Miller <davem@sunset.davemloft.net>2006-12-02 21:26:55 -0800
commit16b0a030330d179427edffbeddaa5b7dc5b31196 (patch)
tree2d82def018e4b2b3fb8110cb8127735d4fc52f50 /net/sctp/sm_statefuns.c
parent[SCTP]: sctp_transport_route() switched to net-endian. (diff)
downloadlinux-dev-16b0a030330d179427edffbeddaa5b7dc5b31196.tar.xz
linux-dev-16b0a030330d179427edffbeddaa5b7dc5b31196.zip
[SCTP]: Switch sctp_chunk ->dest 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 '')
-rw-r--r--net/sctp/sm_statefuns.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/net/sctp/sm_statefuns.c b/net/sctp/sm_statefuns.c
index 42377f75ee1c..0848309773a5 100644
--- a/net/sctp/sm_statefuns.c
+++ b/net/sctp/sm_statefuns.c
@@ -5103,7 +5103,6 @@ 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);
@@ -5141,8 +5140,7 @@ static struct sctp_packet *sctp_ootb_pkt_new(const struct sctp_association *asoc
/* Cache a route for the transport with the chunk's destination as
* the source address.
*/
- flip_to_n(&tmp, &chunk->dest);
- sctp_transport_route(transport, &tmp,
+ sctp_transport_route(transport, (union sctp_addr *)&chunk->dest,
sctp_sk(sctp_get_ctl_sock()));
packet = sctp_packet_init(&transport->packet, transport, sport, dport);