diff options
Diffstat (limited to 'sys/netinet')
-rw-r--r-- | sys/netinet/ip_fw.c | 4 | ||||
-rw-r--r-- | sys/netinet/ip_mroute.c | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/sys/netinet/ip_fw.c b/sys/netinet/ip_fw.c index 86b6368..21011c2 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.75 1998/02/06 02:45:54 alex Exp $ + * $Id: ip_fw.c,v 1.76 1998/02/06 12:13:51 eivind Exp $ */ /* @@ -60,7 +60,7 @@ static int fw_verbose_limit = IPFIREWALL_VERBOSE_LIMIT; static int fw_verbose_limit = 0; #endif -LIST_HEAD (ip_fw_head, ip_fw_chain) ip_fw_chain; +static LIST_HEAD (ip_fw_head, ip_fw_chain) ip_fw_chain; static MALLOC_DEFINE(M_IPFW, "IpFw/IpAcct", "IpFw/IpAcct chain's"); diff --git a/sys/netinet/ip_mroute.c b/sys/netinet/ip_mroute.c index b8068d3..6140dfb 100644 --- a/sys/netinet/ip_mroute.c +++ b/sys/netinet/ip_mroute.c @@ -9,7 +9,7 @@ * Modified by Bill Fenner, PARC, April 1995 * * MROUTING Revision: 3.5 - * $Id: ip_mroute.c,v 1.43 1998/02/04 22:33:08 eivind Exp $ + * $Id: ip_mroute.c,v 1.44 1998/02/06 12:13:52 eivind Exp $ */ #include "opt_mrouting.h" @@ -199,9 +199,9 @@ ip_rsvp_force_done(so) */ #ifndef MROUTE_LKM struct socket *ip_mrouter = NULL; -struct mrtstat mrtstat; +static struct mrtstat mrtstat; -int ip_mrtproto = IGMP_DVMRP; /* for netstat only */ +static int ip_mrtproto = IGMP_DVMRP; /* for netstat only */ #else /* MROUTE_LKM */ extern void X_ipip_input __P((struct mbuf *m, int iphlen)); extern struct mrtstat mrtstat; |