summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuido van Rooij <guido@FreeBSD.org>1998-05-18 17:12:44 +0000
committerGuido van Rooij <guido@FreeBSD.org>1998-05-18 17:12:44 +0000
commitdcfa7b888ee87500623a1c383d73c55ddd47e5a8 (patch)
treeefd758c908f3aae8122867a520f6e10f87f54bf2
parent33cda32e1c16b68ccbf2992a838805b854f84f26 (diff)
Notes
-rw-r--r--sys/netinet/tcp_input.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/tcp_input.c b/sys/netinet/tcp_input.c
index b1a6527cf5e0..61b838c7fa23 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.54.2.8 1998/05/12 19:33:23 guido Exp $
+ * $Id: tcp_input.c,v 1.54.2.9 1998/05/18 17:08:29 guido Exp $
*/
#include "opt_tcpdebug.h"
@@ -705,7 +705,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;