From e994f8f0056f3a5cef934fdaf04af9321e8bc66d Mon Sep 17 00:00:00 2001 From: olah Date: Tue, 9 May 1995 12:32:06 +0000 Subject: Fix a misspelled constant in tcp_input.c. On Tue, 09 May 1995 04:35:27 PDT, Richard Stevens wrote: > In tcp_dooptions() under the case TCPOPT_CC there is an assignment > > to->to_flag |= TCPOPT_CC; > > that should be > > to->to_flag |= TOF_CC; > > I haven't thought through the ramifications of what's been happening ... > > Rich Stevens Submitted by: rstevens@noao.edu (Richard Stevens) --- sys/netinet/tcp_reass.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sys/netinet/tcp_reass.c') diff --git a/sys/netinet/tcp_reass.c b/sys/netinet/tcp_reass.c index 84f903b..c074d4f 100644 --- a/sys/netinet/tcp_reass.c +++ b/sys/netinet/tcp_reass.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * From: @(#)tcp_input.c 8.5 (Berkeley) 4/10/94 - * $Id: tcp_input.c,v 1.21 1995/04/10 17:37:46 davidg Exp $ + * $Id: tcp_input.c,v 1.22 1995/05/03 07:16:52 davidg Exp $ */ #ifndef TUBA_INCLUDE @@ -1704,7 +1704,7 @@ tcp_dooptions(tp, cp, cnt, ti, to) case TCPOPT_CC: if (optlen != TCPOLEN_CC) continue; - to->to_flag |= TCPOPT_CC; + to->to_flag |= TOF_CC; bcopy((char *)cp + 2, (char *)&to->to_cc, sizeof(to->to_cc)); NTOHL(to->to_cc); -- cgit v1.1