summaryrefslogtreecommitdiff
path: root/sys/netinet/tcp_input.c
diff options
context:
space:
mode:
authorSam Leffler <sam@FreeBSD.org>2002-11-10 17:17:32 +0000
committerSam Leffler <sam@FreeBSD.org>2002-11-10 17:17:32 +0000
commit6f0d017cf49ece63b2023718e12fb45c2dfe521f (patch)
tree4b08d1f7fcc8da87d5ab271a2deebfbd261d6e9a /sys/netinet/tcp_input.c
parenta5d96e6d20116f3e941534851017ec60f03df896 (diff)
Notes
Diffstat (limited to 'sys/netinet/tcp_input.c')
-rw-r--r--sys/netinet/tcp_input.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/sys/netinet/tcp_input.c b/sys/netinet/tcp_input.c
index 29e36c678018..110a8706f104 100644
--- a/sys/netinet/tcp_input.c
+++ b/sys/netinet/tcp_input.c
@@ -86,9 +86,7 @@
#ifdef FAST_IPSEC
#include <netipsec/ipsec.h>
-#ifdef INET6
#include <netipsec/ipsec6.h>
-#endif
#endif /*FAST_IPSEC*/
#ifdef IPSEC
@@ -574,13 +572,11 @@ findpcb:
}
#endif
#ifdef FAST_IPSEC
-#ifdef INET6
if (isipv6) {
if (inp != NULL && ipsec6_in_reject(m, inp)) {
goto drop;
}
} else
-#endif
if (inp != NULL && ipsec4_in_reject(m, inp)) {
goto drop;
}