From 6ebcee295263b1e9b81b92ff6e4a136e6d9dcc7a Mon Sep 17 00:00:00 2001 From: Ed Schouten Date: Sun, 6 Nov 2011 08:16:47 +0000 Subject: [PATCH] Add missing static keywords to rusers(1) --- usr.bin/rusers/rusers.c | 6 +++--- 1 file 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;