diff options
| author | Luigi Rizzo <luigi@FreeBSD.org> | 1998-12-22 20:38:06 +0000 |
|---|---|---|
| committer | Luigi Rizzo <luigi@FreeBSD.org> | 1998-12-22 20:38:06 +0000 |
| commit | 549db363a7047c0bff2d1ca65c08ee4cb1a4f58d (patch) | |
| tree | ebde50daced732ed2bfb875e2d6fa4cf12c2e54a | |
| parent | 800df04d576608e25fd71bc50af473b75c0b9ec5 (diff) | |
Notes
| -rw-r--r-- | sys/netinet/ip_fw.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/netinet/ip_fw.c b/sys/netinet/ip_fw.c index 950be6b42359c..b609991cc6d2a 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"); |
