diff options
author | Alexander Yurchenko <grange@cvs.openbsd.org> | 2004-04-15 12:05:35 +0000 |
---|---|---|
committer | Alexander Yurchenko <grange@cvs.openbsd.org> | 2004-04-15 12:05:35 +0000 |
commit | e84af1f7f689609758880279351389fe6a40b24c (patch) | |
tree | 1203e67107154874201f3da26924dabc22514c03 /sys/netinet | |
parent | ab2d0dc34c518645b9b00d4e44a75abff3ea10df (diff) |
Unbreak INET6less kernels.
ok markus
Diffstat (limited to 'sys/netinet')
-rw-r--r-- | sys/netinet/tcp_input.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/netinet/tcp_input.c b/sys/netinet/tcp_input.c index eb9c12cd129..0aeec8e2dd0 100644 --- a/sys/netinet/tcp_input.c +++ b/sys/netinet/tcp_input.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tcp_input.c,v 1.162 2004/04/15 02:59:22 itojun Exp $ */ +/* $OpenBSD: tcp_input.c,v 1.163 2004/04/15 12:05:34 grange Exp $ */ /* $NetBSD: tcp_input.c,v 1.23 1996/02/13 23:43:44 christos Exp $ */ /* @@ -95,11 +95,12 @@ #include <netinet/tcpip.h> #include <netinet/tcp_debug.h> +struct tcpiphdr tcp_saveti; + #ifdef INET6 #include <netinet6/in6_var.h> #include <netinet6/nd6.h> -struct tcpiphdr tcp_saveti; struct tcpipv6hdr tcp_saveti6; /* for the packet header length in the mbuf */ |