summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
authorluigi <luigi@FreeBSD.org>1998-12-22 20:38:06 +0000
committerluigi <luigi@FreeBSD.org>1998-12-22 20:38:06 +0000
commitfa2dcdbf3dde8775f176bc2f3230ab09fbaa8ab5 (patch)
treeaaf33651edc867807d0ec831ed95be240890589a /sys
parent987c440a031b5aa7a624898ec5929a22ebb0c61d (diff)
downloadFreeBSD-src-fa2dcdbf3dde8775f176bc2f3230ab09fbaa8ab5.zip
FreeBSD-src-fa2dcdbf3dde8775f176bc2f3230ab09fbaa8ab5.tar.gz
'ip_fw_head' and 'M_IPFW' are also used in ip_dummynet so cannot be
static... Reported by: Dave Alden
Diffstat (limited to 'sys')
-rw-r--r--sys/netinet/ip_fw.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/netinet/ip_fw.c b/sys/netinet/ip_fw.c
index 950be6b..b609991 100644
--- a/sys/netinet/ip_fw.c
+++ b/sys/netinet/ip_fw.c
@@ -12,7 +12,7 @@
*
* This software is provided ``AS IS'' without any warranties of any kind.
*
- * $Id: ip_fw.c,v 1.100 1998/12/14 18:09:13 luigi Exp $
+ * $Id: ip_fw.c,v 1.101 1998/12/21 22:40:54 luigi Exp $
*/
/*
@@ -71,9 +71,9 @@ static int fw_verbose_limit = 0;
#define IPFW_DEFAULT_RULE ((u_int)(u_short)~0)
-static LIST_HEAD (ip_fw_head, ip_fw_chain) ip_fw_chain;
+LIST_HEAD (ip_fw_head, ip_fw_chain) ip_fw_chain;
-static MALLOC_DEFINE(M_IPFW, "IpFw/IpAcct", "IpFw/IpAcct chain's");
+MALLOC_DEFINE(M_IPFW, "IpFw/IpAcct", "IpFw/IpAcct chain's");
#ifdef SYSCTL_NODE
SYSCTL_NODE(_net_inet_ip, OID_AUTO, fw, CTLFLAG_RW, 0, "Firewall");
OpenPOWER on IntegriCloud