diff options
Diffstat (limited to 'sys/netpfil/ipfw/ip_fw_bpf.c')
-rw-r--r-- | sys/netpfil/ipfw/ip_fw_bpf.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/netpfil/ipfw/ip_fw_bpf.c b/sys/netpfil/ipfw/ip_fw_bpf.c index 6f8aa39701c5..d7e10596573f 100644 --- a/sys/netpfil/ipfw/ip_fw_bpf.c +++ b/sys/netpfil/ipfw/ip_fw_bpf.c @@ -48,10 +48,10 @@ __FBSDID("$FreeBSD$"); #include <netinet/ip_var.h> #include <netpfil/ipfw/ip_fw_private.h> -static VNET_DEFINE(struct ifnet *, log_if); -static VNET_DEFINE(struct ifnet *, pflog_if); -static VNET_DEFINE(struct if_clone *, ipfw_cloner); -static VNET_DEFINE(struct if_clone *, ipfwlog_cloner); +VNET_DEFINE_STATIC(struct ifnet *, log_if); +VNET_DEFINE_STATIC(struct ifnet *, pflog_if); +VNET_DEFINE_STATIC(struct if_clone *, ipfw_cloner); +VNET_DEFINE_STATIC(struct if_clone *, ipfwlog_cloner); #define V_ipfw_cloner VNET(ipfw_cloner) #define V_ipfwlog_cloner VNET(ipfwlog_cloner) #define V_log_if VNET(log_if) |