summaryrefslogtreecommitdiffstats
path: root/sys/netinet/ip_input.c
diff options
context:
space:
mode:
authorrwatson <rwatson@FreeBSD.org>2004-08-18 03:11:04 +0000
committerrwatson <rwatson@FreeBSD.org>2004-08-18 03:11:04 +0000
commitb790600a0088581ca0fef5683512b32947d7c659 (patch)
treee088b5091485dc9eb2d07735e223f91ba4e80dd7 /sys/netinet/ip_input.c
parent79dd918c6c8fbb60b4dc3b7900c964d8683aeb6c (diff)
downloadFreeBSD-src-b790600a0088581ca0fef5683512b32947d7c659.zip
FreeBSD-src-b790600a0088581ca0fef5683512b32947d7c659.tar.gz
Fix build of ip_input.c with "options IPSEC" -- the "pass:" label
is used with both FAST_IPSEC and IPSEC, but was defined for only FAST_IPSEC.
Diffstat (limited to 'sys/netinet/ip_input.c')
-rw-r--r--sys/netinet/ip_input.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/netinet/ip_input.c b/sys/netinet/ip_input.c
index fc4ab6e..f606899 100644
--- a/sys/netinet/ip_input.c
+++ b/sys/netinet/ip_input.c
@@ -451,7 +451,7 @@ tooshort:
#endif /* PFIL_HOOKS */
-#if defined(FAST_IPSEC) && !defined(IPSEC_FILTERGIF)
+#if (defined(FAST_IPSEC) || defined(IPSEC)) && !defined(IPSEC_FILTERGIF)
pass:
#endif
OpenPOWER on IntegriCloud