diff options
| author | Matthew Dillon <dillon@FreeBSD.org> | 2002-12-30 19:31:04 +0000 |
|---|---|---|
| committer | Matthew Dillon <dillon@FreeBSD.org> | 2002-12-30 19:31:04 +0000 |
| commit | 07fd333df37ed096737b5b0d8e04076f74976f00 (patch) | |
| tree | e02dacec56e2f3d597e0c138111a28d0056f7f52 /sys/netinet/tcp_input.c | |
| parent | ba04519ba3fc802175857ffc8956210aae7ff748 (diff) | |
Notes
Diffstat (limited to 'sys/netinet/tcp_input.c')
| -rw-r--r-- | sys/netinet/tcp_input.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/sys/netinet/tcp_input.c b/sys/netinet/tcp_input.c index b424add4e4fa..cb52cef4abe8 100644 --- a/sys/netinet/tcp_input.c +++ b/sys/netinet/tcp_input.c @@ -1454,12 +1454,9 @@ trimthenstep6: tcpstat.tcps_rcvduppack++; tcpstat.tcps_rcvdupbyte += tlen; tcpstat.tcps_pawsdrop++; - if (tlen) { + if (tlen) goto dropafterack; - } else { - printf("PAWS ack-on-ack loop avoided\n"); - goto drop; - } + goto drop; } } |
