diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1999-07-18 16:33:09 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1999-07-18 16:33:09 +0000 |
commit | 3e197fa969cc7ecae8c1969b222bd142b2b155de (patch) | |
tree | 9e4f1467f38ec5ea03e2758c9bcb0689aa8f15b2 | |
parent | b35029363e489797ff7966892874d01b1f86b826 (diff) |
use proper 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 4eb50c0a275..845c5135eec 100644 --- a/sys/netinet/tcp_input.c +++ b/sys/netinet/tcp_input.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tcp_input.c,v 1.42 1999/07/17 23:41:46 provos Exp $ */ +/* $OpenBSD: tcp_input.c,v 1.43 1999/07/18 16:33:08 deraadt Exp $ */ /* $NetBSD: tcp_input.c,v 1.23 1996/02/13 23:43:44 christos Exp $ */ /* @@ -631,7 +631,7 @@ findpcb: inp->inp_options = ip_srcroute(); #if INET6 } - }; + } #endif /* INET6 */ in_pcbrehash(inp); tp = intotcpcb(inp); |