diff options
author | 1996-09-25 11:39:56 +0000 | |
---|---|---|
committer | 1996-09-25 11:39:56 +0000 | |
commit | cb34a2e62ff0ac002979856d181fb47e18d243f1 (patch) | |
tree | f4680c944c638b0b7d1aa3239c27c8c2504ef6dd /sys/netinet/tcp_input.c | |
parent | permit loading of a special MBR bootblock -- do not encode a fake MBR (diff) | |
download | wireguard-openbsd-cb34a2e62ff0ac002979856d181fb47e18d243f1.tar.xz wireguard-openbsd-cb34a2e62ff0ac002979856d181fb47e18d243f1.zip |
Drop unused variable
Diffstat (limited to 'sys/netinet/tcp_input.c')
-rw-r--r-- | sys/netinet/tcp_input.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/tcp_input.c b/sys/netinet/tcp_input.c index 0be9bed6e99..e0d20e0c6f1 100644 --- a/sys/netinet/tcp_input.c +++ b/sys/netinet/tcp_input.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tcp_input.c,v 1.7 1996/09/20 22:53:11 deraadt Exp $ */ +/* $OpenBSD: tcp_input.c,v 1.8 1996/09/25 11:39:56 niklas Exp $ */ /* $NetBSD: tcp_input.c,v 1.23 1996/02/13 23:43:44 christos Exp $ */ /* @@ -246,7 +246,7 @@ tcpdropoldhalfopen(avoidtp, port) u_int16_t port; { register struct inpcb *inp; - register struct tcpcb *tp, *droptp = NULL; + register struct tcpcb *tp; int ncheck = 40; int s; |