From 3b5f6123faf5cef28bbe9fe593ff6acf8e6b4974 Mon Sep 17 00:00:00 2001 From: lukem Date: Tue, 22 Oct 2002 07:22:19 +0000 Subject: [PATCH] fix typo in previous: s/tip/top/ --- sys/netinet/tcp_subr.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/netinet/tcp_subr.c b/sys/netinet/tcp_subr.c index 592e5a4ce24f..0712b3377152 100644 --- a/sys/netinet/tcp_subr.c +++ b/sys/netinet/tcp_subr.c @@ -1,4 +1,4 @@ -/* $NetBSD: tcp_subr.c,v 1.135 2002/10/22 02:53:59 simonb Exp $ */ +/* $NetBSD: tcp_subr.c,v 1.136 2002/10/22 07:22:19 lukem Exp $ */ /* * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project. @@ -102,7 +102,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: tcp_subr.c,v 1.135 2002/10/22 02:53:59 simonb Exp $"); +__KERNEL_RCSID(0, "$NetBSD: tcp_subr.c,v 1.136 2002/10/22 07:22:19 lukem Exp $"); #include "opt_inet.h" #include "opt_ipsec.h" @@ -2074,7 +2074,7 @@ tcp_new_iss1(void *laddr, void *faddr, u_int16_t lport, u_int16_t fport, /* * Limit it to the positive range for really old TCP * implementations. - * Just AND off the tip bit instead of checking if + * Just AND off the top bit instead of checking if * is set first - saves a branch 50% of the time. */ tcp_iss &= 0x7fffffff; /* XXX */