summaryrefslogtreecommitdiffstats
path: root/net/sctp/proc.c
diff options
context:
space:
mode:
authorAl Viro2006-11-21 02:06:04 +0100
committerDavid S. Miller2006-12-03 06:26:34 +0100
commitacd2bc96e19535fcd74c6eb94532c19c817857bd (patch)
tree00d04fde1323a4e514ce20a07b212dcd43910d92 /net/sctp/proc.c
parent[SCTP]: Switch sctp_bind_addr_match() to net-endian. (diff)
downloadkernel-qcow2-linux-acd2bc96e19535fcd74c6eb94532c19c817857bd.tar.gz
kernel-qcow2-linux-acd2bc96e19535fcd74c6eb94532c19c817857bd.tar.xz
kernel-qcow2-linux-acd2bc96e19535fcd74c6eb94532c19c817857bd.zip
[SCTP]: Switch ->primary_addr to net-endian.
Users 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/proc.c')
-rw-r--r--net/sctp/proc.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/net/sctp/proc.c b/net/sctp/proc.c
index 04faa4a706d4..b3493bdbcacb 100644
--- a/net/sctp/proc.c
+++ b/net/sctp/proc.c
@@ -175,16 +175,14 @@ static void sctp_seq_dump_remote_addrs(struct seq_file *seq, struct sctp_associa
struct list_head *pos;
struct sctp_transport *transport;
union sctp_addr *addr, *primary;
- union sctp_addr tmp;
struct sctp_af *af;
- primary = &(assoc->peer.primary_addr);
- flip_to_n(&tmp, primary);
+ primary = &assoc->peer.primary_addr;
list_for_each(pos, &assoc->peer.transport_addr_list) {
transport = list_entry(pos, struct sctp_transport, transports);
addr = &transport->ipaddr;
af = sctp_get_af_specific(addr->sa.sa_family);
- if (af->cmp_addr(addr, &tmp)) {
+ if (af->cmp_addr(addr, primary)) {
seq_printf(seq, "*");
}
af->seq_dump_addr(seq, addr);