summaryrefslogtreecommitdiffstats
path: root/net/ipv4/proc.c
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>1998-04-05 11:23:36 +0000
committerRalf Baechle <ralf@linux-mips.org>1998-04-05 11:23:36 +0000
commit4318fbda2a7ee51caafdc4eb1f8028a3f0605142 (patch)
treecddb50a81d7d1a628cc400519162080c6d87868e /net/ipv4/proc.c
parent36ea5120664550fae6d31f1c6f695e4f8975cb06 (diff)
o Merge with Linux 2.1.91.
o First round of bugfixes for the SC/MC CPUs. o FPU context switch fixes. o Lazy context switches. o Faster syscalls. o Removed dead code. o Shitloads of other things I forgot ...
Diffstat (limited to 'net/ipv4/proc.c')
-rw-r--r--net/ipv4/proc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/net/ipv4/proc.c b/net/ipv4/proc.c
index 221207205..0ea231adf 100644
--- a/net/ipv4/proc.c
+++ b/net/ipv4/proc.c
@@ -59,7 +59,7 @@ static inline void get__openreq(struct sock *sk, struct open_request *req,
" %02X %08X:%08X %02X:%08lX %08X %5d %8d %lu",
i,
(long unsigned int)req->af.v4_req.loc_addr,
- ntohs(sk->dummy_th.source),
+ ntohs(sk->sport),
(long unsigned int)req->af.v4_req.rmt_addr,
req->rmt_port,
TCP_SYN_RECV,
@@ -83,8 +83,8 @@ static inline void get__sock(struct sock *sp, char *tmpbuf, int i, int format)
dest = sp->daddr;
src = sp->rcv_saddr;
- destp = sp->dummy_th.dest;
- srcp = sp->dummy_th.source;
+ destp = sp->dport;
+ srcp = sp->sport;
/* FIXME: The fact that retransmit_timer occurs as a field
* in two different parts of the socket structure is,