diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2007-05-09 14:28:48 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2007-05-09 14:28:48 +0000 |
commit | 0324fb442502be50fd67f5c4efa4cf92ad3983b7 (patch) | |
tree | c20142af438d8dc5a76779f2d0ba404d7ff2a550 | |
parent | c9409f68a4508c9914d98f17c662a2668d58fbbe (diff) |
tcp_iss usage is ifdef TCP_COMPAT_42, so the variable decl can be too
-rw-r--r-- | sys/netinet/tcp_subr.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/netinet/tcp_subr.c b/sys/netinet/tcp_subr.c index a91d8e5bc04..5693e4a1545 100644 --- a/sys/netinet/tcp_subr.c +++ b/sys/netinet/tcp_subr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tcp_subr.c,v 1.94 2007/05/08 18:46:56 deraadt Exp $ */ +/* $OpenBSD: tcp_subr.c,v 1.95 2007/05/09 14:28:47 deraadt Exp $ */ /* $NetBSD: tcp_subr.c,v 1.22 1996/02/13 23:44:00 christos Exp $ */ /* @@ -149,7 +149,9 @@ struct pool sackhl_pool; #endif struct tcpstat tcpstat; /* tcp statistics */ +#ifdef TCP_COMPAT_42 tcp_seq tcp_iss; +#endif /* * Tcp initialization |