diff options
author | Joerg Goltermann <gollo@cvs.openbsd.org> | 2010-08-29 09:24:39 +0000 |
---|---|---|
committer | Joerg Goltermann <gollo@cvs.openbsd.org> | 2010-08-29 09:24:39 +0000 |
commit | 9d743a281bc55e074c18751f515fc56475bff0f2 (patch) | |
tree | 181432c0332b5ede4634a107e957fc9d6270e140 /sys | |
parent | 41f14e555e358d9cdf112c5956c11fa73088fa2b (diff) |
Fix kernel compiling with disabled IPSEC and enabled GIF/MPLS
OK: claudio@, bob@, sthen@, thib@
Diffstat (limited to 'sys')
-rw-r--r-- | sys/netinet/in_proto.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/in_proto.c b/sys/netinet/in_proto.c index 0ecac5bd043..7dd03ac2e51 100644 --- a/sys/netinet/in_proto.c +++ b/sys/netinet/in_proto.c @@ -1,4 +1,4 @@ -/* $OpenBSD: in_proto.c,v 1.53 2010/05/11 09:36:07 claudio Exp $ */ +/* $OpenBSD: in_proto.c,v 1.54 2010/08/29 09:24:38 gollo Exp $ */ /* $NetBSD: in_proto.c,v 1.14 1996/02/18 18:58:32 christos Exp $ */ /* @@ -149,9 +149,9 @@ #ifdef IPSEC #include <netinet/ip_ipsp.h> -#include <netinet/ip_ether.h> #endif +#include <netinet/ip_ether.h> #include <netinet/ip_ipip.h> #include "gre.h" |