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/mlf_ipl.c | |
parent | 3cf3a6389ea31d2b7253bde48d67ca97a35f28ab (diff) | |
download | FreeBSD-src-da99bd7667e68e4b83e941ad12af24f2de3b29c2.zip FreeBSD-src-da99bd7667e68e4b83e941ad12af24f2de3b29c2.tar.gz |
Staticize some more.
Diffstat (limited to 'sys/netinet/mlf_ipl.c')
-rw-r--r-- | sys/netinet/mlf_ipl.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/netinet/mlf_ipl.c b/sys/netinet/mlf_ipl.c index d3abe3e..65c7139 100644 --- a/sys/netinet/mlf_ipl.c +++ b/sys/netinet/mlf_ipl.c @@ -89,7 +89,7 @@ static int if_ipl_remove __P((void)); int xxxinit __P((struct lkm_table *, int, int)); -struct cdevsw ipldevsw = +static struct cdevsw ipldevsw = { iplopen, /* open */ iplclose, /* close */ @@ -140,7 +140,7 @@ SYSCTL_INT(_net_inet_ipf, OID_AUTO, fr_defaultauthage, CTLFLAG_RW, #endif #ifdef DEVFS -void *ipf_devfs[IPL_LOGMAX + 1]; +static void *ipf_devfs[IPL_LOGMAX + 1]; #endif #if !defined(__FreeBSD_version) || (__FreeBSD_version < 220000) @@ -152,7 +152,7 @@ extern struct cdevsw cdevsw[]; extern int vd_unuseddev __P((void)); extern int nchrdev; #else -int ipl_major = CDEV_MAJOR; +static int ipl_major = CDEV_MAJOR; static struct cdevsw ipl_cdevsw = { iplopen, iplclose, iplread, nowrite, /* 79 */ |