diff options
Diffstat (limited to 'sys/netinet/fil.c')
-rw-r--r-- | sys/netinet/fil.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/netinet/fil.c b/sys/netinet/fil.c index d634bbb..f91ee3d 100644 --- a/sys/netinet/fil.c +++ b/sys/netinet/fil.c @@ -7,7 +7,7 @@ */ #if !defined(lint) static const char sccsid[] = "@(#)fil.c 1.36 6/5/96 (C) 1993-1996 Darren Reed"; -static const char rcsid[] = "@(#)$Id: fil.c,v 1.2 1998/03/21 11:33:54 peter Exp $"; +static const char rcsid[] = "@(#)$Id: fil.c,v 1.3 1998/06/20 18:37:49 peter Exp $"; #endif #include "opt_ipfilter.h" @@ -153,7 +153,7 @@ static int frflushlist __P((int, int, int *, frentry_t *, frentry_t **)); /* * bit values for identifying presence of individual IP options */ -struct optlist ipopts[20] = { +static struct optlist ipopts[20] = { { IPOPT_NOP, 0x000001 }, { IPOPT_RR, 0x000002 }, { IPOPT_ZSU, 0x000004 }, @@ -179,7 +179,7 @@ struct optlist ipopts[20] = { /* * bit values for identifying presence of individual IP security options */ -struct optlist secopt[8] = { +static struct optlist secopt[8] = { { IPSO_CLASS_RES4, 0x01 }, { IPSO_CLASS_TOPS, 0x02 }, { IPSO_CLASS_SECR, 0x04 }, @@ -1098,7 +1098,7 @@ nodata: * SUCH DAMAGE. * * @(#)uipc_mbuf.c 8.2 (Berkeley) 1/4/94 - * $Id: fil.c,v 1.2 1998/03/21 11:33:54 peter Exp $ + * $Id: fil.c,v 1.3 1998/06/20 18:37:49 peter Exp $ */ /* * Copy data from an mbuf chain starting "off" bytes from the beginning, |