summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrey A. Chernov <ache@FreeBSD.org>1999-04-24 18:25:35 +0000
committerAndrey A. Chernov <ache@FreeBSD.org>1999-04-24 18:25:35 +0000
commit3879597f4f70449dd4b2e8a15ed66dfa312ee515 (patch)
treed2b2efbca51736dd1ff6f3c7d3098f0cb6351656
parent424af31b458d3e6f6a0f9c090c10ab1e08179c22 (diff)
Notes
-rw-r--r--sys/netinet/tcp_usrreq.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/tcp_usrreq.c b/sys/netinet/tcp_usrreq.c
index 66519cef45f8..5d231c996b68 100644
--- a/sys/netinet/tcp_usrreq.c
+++ b/sys/netinet/tcp_usrreq.c
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* From: @(#)tcp_usrreq.c 8.2 (Berkeley) 1/3/94
- * $Id: tcp_usrreq.c,v 1.39 1998/12/07 21:58:42 archie Exp $
+ * $Id: tcp_usrreq.c,v 1.40 1999/01/20 17:31:59 fenner Exp $
*/
#include "opt_tcpdebug.h"
@@ -111,7 +111,7 @@ tcp_usr_attach(struct socket *so, int proto, struct proc *p)
goto out;
if ((so->so_options & SO_LINGER) && so->so_linger == 0)
- so->so_linger = TCP_LINGERTIME * hz;
+ so->so_linger = TCP_LINGERTIME;
tp = sototcpcb(so);
out:
TCPDEBUG2(PRU_ATTACH);