summaryrefslogtreecommitdiffstats
path: root/sys/netinet/ip_fw_pfil.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/netinet/ip_fw_pfil.c')
-rw-r--r--sys/netinet/ip_fw_pfil.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/netinet/ip_fw_pfil.c b/sys/netinet/ip_fw_pfil.c
index 896194c..64a1752 100644
--- a/sys/netinet/ip_fw_pfil.c
+++ b/sys/netinet/ip_fw_pfil.c
@@ -47,6 +47,7 @@ __FBSDID("$FreeBSD$");
#include <sys/socketvar.h>
#include <sys/sysctl.h>
#include <sys/ucred.h>
+#include <sys/vimage.h>
#include <net/if.h>
#include <net/route.h>
@@ -498,14 +499,14 @@ ipfw_chg_hook(SYSCTL_HANDLER_ARGS)
if (enable == *(int *)arg1)
return (0);
- if (arg1 == &fw_enable) {
+ if (arg1 == &V_fw_enable) {
if (enable)
error = ipfw_hook();
else
error = ipfw_unhook();
}
#ifdef INET6
- if (arg1 == &fw6_enable) {
+ if (arg1 == &V_fw6_enable) {
if (enable)
error = ipfw6_hook();
else
OpenPOWER on IntegriCloud