diff options
author | Guido van Rooij <guido@FreeBSD.org> | 1998-05-18 17:11:24 +0000 |
---|---|---|
committer | Guido van Rooij <guido@FreeBSD.org> | 1998-05-18 17:11:24 +0000 |
commit | 068373b683d937852817355588c98076839e2e53 (patch) | |
tree | 3e94cc6fcd1a33dfcaac8003215caa015b3a00d8 /sys/netinet/tcp_input.c | |
parent | 0bce271a1f082afd781ca55aaa02f3fa623d41d8 (diff) |
Notes
Diffstat (limited to 'sys/netinet/tcp_input.c')
-rw-r--r-- | sys/netinet/tcp_input.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/tcp_input.c b/sys/netinet/tcp_input.c index 578b109c63a9a..d33c29dc56dc8 100644 --- a/sys/netinet/tcp_input.c +++ b/sys/netinet/tcp_input.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)tcp_input.c 8.12 (Berkeley) 5/24/95 - * $Id: tcp_input.c,v 1.75 1998/05/04 17:59:52 guido Exp $ + * $Id: tcp_input.c,v 1.76 1998/05/18 17:07:58 guido Exp $ */ #include "opt_tcpdebug.h" @@ -680,7 +680,7 @@ findpcb: * - otherwise do a normal 3-way handshake. */ if ((to.to_flag & TOF_CC) != 0) { - if (((tp->t_state & TF_NOPUSH) != 0) && + if (((tp->t_flags & TF_NOPUSH) != 0) && taop->tao_cc != 0 && CC_GT(to.to_cc, taop->tao_cc)) { taop->tao_cc = to.to_cc; |