aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/nfscbd
diff options
context:
space:
mode:
authorSimon J. Gerraty <sjg@FreeBSD.org>2012-11-04 02:52:03 +0000
committerSimon J. Gerraty <sjg@FreeBSD.org>2012-11-04 02:52:03 +0000
commit23090366f729c56cab62de74c7a51792357e98a9 (patch)
treec511c885796e28ec571b5267e8f11f3b103d35e9 /usr.sbin/nfscbd
parent7750ad47a9a7dbc83f87158464170c8640723293 (diff)
parent22ff74b2f44234d31540b1f7fd6c91489c37cad3 (diff)
downloadsrc-23090366f729c56cab62de74c7a51792357e98a9.tar.gz
src-23090366f729c56cab62de74c7a51792357e98a9.zip
Notes
Diffstat (limited to 'usr.sbin/nfscbd')
-rw-r--r--usr.sbin/nfscbd/nfscbd.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/nfscbd/nfscbd.c b/usr.sbin/nfscbd/nfscbd.c
index ba093118888c..c9153b432f1e 100644
--- a/usr.sbin/nfscbd/nfscbd.c
+++ b/usr.sbin/nfscbd/nfscbd.c
@@ -66,12 +66,12 @@ __FBSDID("$FreeBSD$");
/* Global defs */
#ifdef DEBUG
#define syslog(e, s) fprintf(stderr,(s))
-int debug = 1;
+static int debug = 1;
#else
-int debug = 0;
+static int debug = 0;
#endif
-pid_t children;
+static pid_t children;
static void nonfs(int);
static void reapchild(int);