diff options
author | Henning Brauer <henning@cvs.openbsd.org> | 2012-11-02 13:14:06 +0000 |
---|---|---|
committer | Henning Brauer <henning@cvs.openbsd.org> | 2012-11-02 13:14:06 +0000 |
commit | 89e143c61dacbad7230c83f06c8621aa43ca377d (patch) | |
tree | dae57c786b97c68fb61c3a29e3277660b5ce785d /sys/netinet6 | |
parent | 4b5a790c0ab75f5eef9ac0bbd2b7694b75b1755f (diff) |
unbreak ramdisks, we need to include tcp/udp.h unconditionally now and not
dependent on ipsec.
puzzled how this went by since I did run full mkrs... pbly lost in my forest
of trees :(
report Amit Kulkarni <amitkulz at gmail.com>, fix me, ok kettenis beck krw
Diffstat (limited to 'sys/netinet6')
-rw-r--r-- | sys/netinet6/ip6_output.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/netinet6/ip6_output.c b/sys/netinet6/ip6_output.c index f12ea0e3fa3..d203b09b4ec 100644 --- a/sys/netinet6/ip6_output.c +++ b/sys/netinet6/ip6_output.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ip6_output.c,v 1.129 2012/11/01 07:55:56 henning Exp $ */ +/* $OpenBSD: ip6_output.c,v 1.130 2012/11/02 13:14:05 henning Exp $ */ /* $KAME: ip6_output.c,v 1.172 2001/03/25 09:55:56 itojun Exp $ */ /* @@ -82,6 +82,8 @@ #include <netinet/in_systm.h> #include <netinet/ip.h> #include <netinet/in_pcb.h> +#include <netinet/udp.h> +#include <netinet/tcp.h> #include <netinet/ip6.h> #include <netinet/icmp6.h> @@ -99,8 +101,6 @@ #include <netinet/ip_ipsp.h> #include <netinet/ip_ah.h> #include <netinet/ip_esp.h> -#include <netinet/udp.h> -#include <netinet/tcp.h> #include <net/pfkeyv2.h> extern u_int8_t get_sa_require(struct inpcb *); |