diff options
| author | Andre Oppermann <andre@FreeBSD.org> | 2007-05-06 16:04:36 +0000 |
|---|---|---|
| committer | Andre Oppermann <andre@FreeBSD.org> | 2007-05-06 16:04:36 +0000 |
| commit | 1a5537409f39feb81b47d0b15b09f2ed87c1b547 (patch) | |
| tree | bb99865ab70be51ce9765ca3d8880dc7a2a67303 /sys/netinet/tcp_usrreq.c | |
| parent | 3529149e9a40ce02ac17918077ad9e975070ce57 (diff) | |
Notes
Diffstat (limited to 'sys/netinet/tcp_usrreq.c')
| -rw-r--r-- | sys/netinet/tcp_usrreq.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/tcp_usrreq.c b/sys/netinet/tcp_usrreq.c index 38b29283b960..acda0ec58e51 100644 --- a/sys/netinet/tcp_usrreq.c +++ b/sys/netinet/tcp_usrreq.c @@ -1850,8 +1850,8 @@ db_print_tcpcb(struct tcpcb *tp, const char *name, int indent) tp->snd_scale, tp->rcv_scale, tp->request_r_scale); db_print_indent(indent); - db_printf("requested_s_scale: %u ts_recent: %u ts_recent_age: " - "%lu\n", tp->requested_s_scale, tp->ts_recent, tp->ts_recent_age); + db_printf("ts_recent: %u ts_recent_age: %lu\n", + tp->ts_recent, tp->ts_recent_age); db_print_indent(indent); db_printf("ts_offset: %u last_ack_sent: 0x%08x snd_cwnd_prev: " |
