summaryrefslogtreecommitdiffstats
path: root/sbin/umount
diff options
context:
space:
mode:
authored <ed@FreeBSD.org>2011-11-04 13:36:02 +0000
committered <ed@FreeBSD.org>2011-11-04 13:36:02 +0000
commit5b02333e84f8998d65b39ad509f9c9c5b9df1186 (patch)
tree3cdfecf4c6772b1de7694dadb6b4b6431ecfdb02 /sbin/umount
parent89ec155d247591875dd57c531f710aa8a05cdb16 (diff)
downloadFreeBSD-src-5b02333e84f8998d65b39ad509f9c9c5b9df1186.zip
FreeBSD-src-5b02333e84f8998d65b39ad509f9c9c5b9df1186.tar.gz
Add missing static keywords for global variables to tools in sbin/.
These tools declare global variables without using the static keyword, even though their use is limited to a single C-file, or without placing an extern declaration of them in the proper header file.
Diffstat (limited to 'sbin/umount')
-rw-r--r--sbin/umount/umount.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/umount/umount.c b/sbin/umount/umount.c
index 6c65aec..f179a4c 100644
--- a/sbin/umount/umount.c
+++ b/sbin/umount/umount.c
@@ -63,9 +63,9 @@ static const char rcsid[] =
typedef enum { FIND, REMOVE, CHECKUNIQUE } dowhat;
-struct addrinfo *nfshost_ai = NULL;
-int fflag, vflag;
-char *nfshost;
+static struct addrinfo *nfshost_ai = NULL;
+static int fflag, vflag;
+static char *nfshost;
struct statfs *checkmntlist(char *);
int checkvfsname (const char *, char **);
OpenPOWER on IntegriCloud