diff options
author | sam <sam@FreeBSD.org> | 2003-01-30 05:43:08 +0000 |
---|---|---|
committer | sam <sam@FreeBSD.org> | 2003-01-30 05:43:08 +0000 |
commit | b6cc0a8fe38e89c5b15bee77584bd1c36bc375fc (patch) | |
tree | b077cc54f714b2a67aa7266a4a7bacaa95067f57 | |
parent | af62f90cdb814580a0d1a9c7fc026ca01d4cbd09 (diff) | |
download | FreeBSD-src-b6cc0a8fe38e89c5b15bee77584bd1c36bc375fc.zip FreeBSD-src-b6cc0a8fe38e89c5b15bee77584bd1c36bc375fc.tar.gz |
remove the restriction on build a kernel with FAST_IPSEC and INET6;
you still don't want to use the two together, but it's ok to have
them in the same kernel (the problem that initiated this bandaid
has long since been fixed)
-rw-r--r-- | sys/netinet/in_pcb.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/sys/netinet/in_pcb.c b/sys/netinet/in_pcb.c index eaf7d35..776d70f 100644 --- a/sys/netinet/in_pcb.c +++ b/sys/netinet/in_pcb.c @@ -76,9 +76,6 @@ #if defined(IPSEC) || defined(IPSEC_ESP) #error "Bad idea: don't compile with both IPSEC and FAST_IPSEC!" #endif -#if defined(INET6) -#error "Bad idea: don't use IPv6 with FAST_IPSEC (for the moment)!" -#endif #include <netipsec/ipsec.h> #include <netipsec/key.h> |