diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2006-11-20 20:04:59 -0500 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2006-12-03 00:26:31 -0500 |
commit | c604e368a477ed1f7dd532605a8f1990d2b128ee (patch) | |
tree | e8b40087fb8e45683092da5be7c084e1605d95a2 /net/sctp/proc.c | |
parent | 2a6fd78adec062f16f8662563115679e669efaca (diff) |
[SCTP]: Pass net-endian to ->seq_dump_addr()
No actual modifications of method instances are needed -
they don't look at port numbers. Switch callers...
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.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/sctp/proc.c b/net/sctp/proc.c index 47ccec565a24..bf0144ed3e3a 100644 --- a/net/sctp/proc.c +++ b/net/sctp/proc.c | |||
@@ -165,7 +165,7 @@ static void sctp_seq_dump_local_addrs(struct seq_file *seq, struct sctp_ep_commo | |||
165 | if (primary && af->cmp_addr(addr, primary)) { | 165 | if (primary && af->cmp_addr(addr, primary)) { |
166 | seq_printf(seq, "*"); | 166 | seq_printf(seq, "*"); |
167 | } | 167 | } |
168 | af->seq_dump_addr(seq, addr); | 168 | af->seq_dump_addr(seq, &laddr->a); |
169 | } | 169 | } |
170 | } | 170 | } |
171 | 171 | ||
@@ -185,7 +185,7 @@ static void sctp_seq_dump_remote_addrs(struct seq_file *seq, struct sctp_associa | |||
185 | if (af->cmp_addr(addr, primary)) { | 185 | if (af->cmp_addr(addr, primary)) { |
186 | seq_printf(seq, "*"); | 186 | seq_printf(seq, "*"); |
187 | } | 187 | } |
188 | af->seq_dump_addr(seq, addr); | 188 | af->seq_dump_addr(seq, &transport->ipaddr); |
189 | } | 189 | } |
190 | } | 190 | } |
191 | 191 | ||