diff options
author | Federico G. Schwindt <fgsch@cvs.openbsd.org> | 2000-07-06 10:31:11 +0000 |
---|---|---|
committer | Federico G. Schwindt <fgsch@cvs.openbsd.org> | 2000-07-06 10:31:11 +0000 |
commit | efc171bd2ab0f373bb7d9ec92115224e2a1eec2e (patch) | |
tree | f644f05231e9384c904f437035c630146c50e808 /sys/netinet/tcp_input.c | |
parent | 66cc80194244eb14bf66e944bb3a125092779007 (diff) |
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> |