From 3ac125068a211377f0b3817c37cf1db95a87e8fb Mon Sep 17 00:00:00 2001 From: "Jonathan T. Looney" Date: Thu, 6 Oct 2016 16:28:34 +0000 Subject: Remove "long" variables from the TCP stack (not including the modular congestion control framework). Reviewed by: gnn, lstewart (partial) Sponsored by: Juniper Networks, Netflix Differential Revision: (multiple) Tested by: Limelight, Netflix --- usr.sbin/trpt/trpt.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'usr.sbin/trpt') diff --git a/usr.sbin/trpt/trpt.c b/usr.sbin/trpt/trpt.c index d85d41d42275..644009ce79bb 100644 --- a/usr.sbin/trpt/trpt.c +++ b/usr.sbin/trpt/trpt.c @@ -417,12 +417,12 @@ tcp_trace(short act, short ostate, struct tcpcb *tp, int family __unused, printf("\n"); if (sflag) { printf("\trcv_nxt %lx rcv_wnd %lx snd_una %lx snd_nxt %lx snd_max %lx\n", - (u_long)tp->rcv_nxt, tp->rcv_wnd, + (u_long)tp->rcv_nxt, (u_long)tp->rcv_wnd, (u_long)tp->snd_una, (u_long)tp->snd_nxt, (u_long)tp->snd_max); printf("\tsnd_wl1 %lx snd_wl2 %lx snd_wnd %lx\n", (u_long)tp->snd_wl1, - (u_long)tp->snd_wl2, tp->snd_wnd); + (u_long)tp->snd_wl2, (u_long)tp->snd_wnd); } /* print out timers? */ #if 0 -- cgit v1.2.3