diff options
author | 2000-07-06 10:31:10 +0000 | |
---|---|---|
committer | 2000-07-06 10:31:10 +0000 | |
commit | a282b375c7ef5163277714803496f486342c1601 (patch) | |
tree | 89412f8a6a69b542483a2cd385560a55f5ebcb45 /sys/netinet/tcp_input.c | |
parent | more stats (diff) | |
download | wireguard-openbsd-a282b375c7ef5163277714803496f486342c1601.tar.xz wireguard-openbsd-a282b375c7ef5163277714803496f486342c1601.zip |
Move domain.h above so this compiles again.
Remove netinet.h within ifdef INET6; this is already included.
Diffstat (limited to 'sys/netinet/tcp_input.c')
-rw-r--r-- | sys/netinet/tcp_input.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/sys/netinet/tcp_input.c b/sys/netinet/tcp_input.c index a992d9f6534..b556ce9ec4a 100644 --- a/sys/netinet/tcp_input.c +++ b/sys/netinet/tcp_input.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tcp_input.c,v 1.64 2000/07/06 10:11:22 itojun Exp $ */ +/* $OpenBSD: tcp_input.c,v 1.65 2000/07/06 10:31:10 fgsch Exp $ */ /* $NetBSD: tcp_input.c,v 1.23 1996/02/13 23:43:44 christos Exp $ */ /* @@ -57,6 +57,7 @@ didn't get a copy, you may request one from <license@ipv6.nrl.navy.mil>. #include <sys/socket.h> #include <sys/socketvar.h> #include <sys/errno.h> +#include <sys/domain.h> #include <net/if.h> #include <net/route.h> @@ -82,10 +83,6 @@ didn't get a copy, you may request one from <license@ipv6.nrl.navy.mil>. #endif /* IPSEC */ #ifdef INET6 -#ifndef INET -#include <netinet/in.h> -#endif -#include <sys/domain.h> #include <netinet6/in6_var.h> #include <netinet/ip6.h> #include <netinet6/ip6_var.h> |