diff options
| author | Peter Wemm <peter@FreeBSD.org> | 1999-05-06 18:13:11 +0000 |
|---|---|---|
| committer | Peter Wemm <peter@FreeBSD.org> | 1999-05-06 18:13:11 +0000 |
| commit | dfd5dee1b0cf927c9d59de8e423325603f86b500 (patch) | |
| tree | b8fae917f3fe139609bec4915b6cbc239974a255 /sys/netinet/tcp_input.c | |
| parent | 5f0d05904c70c58e07d4fd7fa4570840fbd9afda (diff) | |
Notes
Diffstat (limited to 'sys/netinet/tcp_input.c')
| -rw-r--r-- | sys/netinet/tcp_input.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/netinet/tcp_input.c b/sys/netinet/tcp_input.c index b155c1de14d6..9709d5026dc8 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.84 1999/02/06 00:47:45 fenner Exp $ + * $Id: tcp_input.c,v 1.85 1999/05/03 23:57:30 billf Exp $ */ #include "opt_ipfw.h" /* for ipfw_fwd */ @@ -844,11 +844,12 @@ findpcb: * we don't get fooled into using T/TCP. */ if (to.to_flag & TOF_CCECHO) { - if (tp->cc_send != to.to_ccecho) + if (tp->cc_send != to.to_ccecho) { if (taop->tao_ccsent != 0) goto drop; else goto dropwithreset; + } } else tp->t_flags &= ~TF_RCVD_CC; tcpstat.tcps_connects++; |
