diff options
author | ache <ache@FreeBSD.org> | 2000-08-01 00:12:27 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 2000-08-01 00:12:27 +0000 |
commit | 1b638496dc9523f3ac722039994b004d6c3cd366 (patch) | |
tree | ad1746849bda20da58c5275579508e074027ca16 | |
parent | e457a9363330fdd35426c98c3a5f7e608c41d494 (diff) | |
download | FreeBSD-src-1b638496dc9523f3ac722039994b004d6c3cd366.zip FreeBSD-src-1b638496dc9523f3ac722039994b004d6c3cd366.tar.gz |
Check IPFILTER (options IPFILTER generates) instead of NIPFILTER
-rw-r--r-- | sys/net/pfil.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/net/pfil.h b/sys/net/pfil.h index fe040e3..80afe1ed 100644 --- a/sys/net/pfil.h +++ b/sys/net/pfil.h @@ -71,11 +71,11 @@ int pfil_remove_hook __P((int (*func) __P((void *, int, #include "opt_ipfilter.h" #endif -#if NIPFILTER > 0 +#if IPFILTER > 0 #ifdef PFIL_HOOKS #undef PFIL_HOOKS #endif #define PFIL_HOOKS -#endif /* NIPFILTER */ +#endif /* IPFILTER */ #endif /* _NET_PFIL_H_ */ |