diff options
author | eivind <eivind@FreeBSD.org> | 1998-11-26 18:54:52 +0000 |
---|---|---|
committer | eivind <eivind@FreeBSD.org> | 1998-11-26 18:54:52 +0000 |
commit | da99bd7667e68e4b83e941ad12af24f2de3b29c2 (patch) | |
tree | 4b35f5e436a53d4bd5e4a364aca5d0958fa70580 /sys/netinet/ip_auth.c | |
parent | 3cf3a6389ea31d2b7253bde48d67ca97a35f28ab (diff) | |
download | FreeBSD-src-da99bd7667e68e4b83e941ad12af24f2de3b29c2.zip FreeBSD-src-da99bd7667e68e4b83e941ad12af24f2de3b29c2.tar.gz |
Staticize some more.
Diffstat (limited to 'sys/netinet/ip_auth.c')
-rw-r--r-- | sys/netinet/ip_auth.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/netinet/ip_auth.c b/sys/netinet/ip_auth.c index 9996c8d..dab93b0 100644 --- a/sys/netinet/ip_auth.c +++ b/sys/netinet/ip_auth.c @@ -6,7 +6,7 @@ * to the original author and the contributors. */ #if !defined(lint) -static const char rcsid[] = "@(#)$Id: ip_auth.c,v 1.4 1998/06/20 18:37:50 peter Exp $"; +static const char rcsid[] = "@(#)$Id: ip_auth.c,v 1.5 1998/08/15 21:51:53 bde Exp $"; #endif #if defined(KERNEL) && !defined(_KERNEL) @@ -117,10 +117,10 @@ int fr_authsize = FR_NUMAUTH; int fr_authused = 0; int fr_defaultauthage = 600; fr_authstat_t fr_authstats; -frauth_t fr_auth[FR_NUMAUTH]; +static frauth_t fr_auth[FR_NUMAUTH]; mb_t *fr_authpkts[FR_NUMAUTH]; -int fr_authstart = 0, fr_authend = 0, fr_authnext = 0; -frauthent_t *fae_list = NULL; +static int fr_authstart = 0, fr_authend = 0, fr_authnext = 0; +static frauthent_t *fae_list = NULL; frentry_t *ipauth = NULL; |