aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/rusers
diff options
context:
space:
mode:
authorEd Schouten <ed@FreeBSD.org>2011-11-06 08:16:47 +0000
committerEd Schouten <ed@FreeBSD.org>2011-11-06 08:16:47 +0000
commit6ebcee295263b1e9b81b92ff6e4a136e6d9dcc7a (patch)
tree446bd21a4e48366b476e7ac3b07744ce8833ab7c /usr.bin/rusers
parent5988030025d1b9995389448126b2660db13ed446 (diff)
downloadsrc-6ebcee295263b1e9b81b92ff6e4a136e6d9dcc7a.tar.gz
src-6ebcee295263b1e9b81b92ff6e4a136e6d9dcc7a.zip
Add missing static keywords to rusers(1)
Notes
Notes: svn path=/head/; revision=227179
Diffstat (limited to 'usr.bin/rusers')
-rw-r--r--usr.bin/rusers/rusers.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/rusers/rusers.c b/usr.bin/rusers/rusers.c
index 705c887e8d7d..4d641dcd070f 100644
--- a/usr.bin/rusers/rusers.c
+++ b/usr.bin/rusers/rusers.c
@@ -56,10 +56,10 @@ __FBSDID("$FreeBSD$");
#define HOST_WIDTH 20
#define LINE_WIDTH 15
-int longopt;
-int allopt;
+static int longopt;
+static int allopt;
-struct host_list {
+static struct host_list {
struct host_list *next;
struct in_addr addr;
} *hosts;