summaryrefslogtreecommitdiff
path: root/sys/netinet/tcp_input.c
diff options
context:
space:
mode:
authorNiklas Hallqvist <niklas@cvs.openbsd.org>1996-09-25 11:39:57 +0000
committerNiklas Hallqvist <niklas@cvs.openbsd.org>1996-09-25 11:39:57 +0000
commitf9d99b10dafddbcc04bc3627d68cf961eb7f1855 (patch)
tree788a3611bcc463ad528398ed33d3601156b2370d /sys/netinet/tcp_input.c
parent2be73c041e1126e066abd15f19c71a8f0a9271e0 (diff)
Drop unused variable
Diffstat (limited to 'sys/netinet/tcp_input.c')
-rw-r--r--sys/netinet/tcp_input.c4
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;