diff options
Diffstat (limited to 'plugins/check_users.c')
-rw-r--r-- | plugins/check_users.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/plugins/check_users.c b/plugins/check_users.c index e39e0d2b..565d9e70 100644 --- a/plugins/check_users.c +++ b/plugins/check_users.c | |||
@@ -48,7 +48,7 @@ | |||
48 | #include "popen.h" | 48 | #include "popen.h" |
49 | #include "utils.h" | 49 | #include "utils.h" |
50 | 50 | ||
51 | #define PROGNAME "check_users" | 51 | const char *progname = "check_users"; |
52 | #define REVISION "$Revision$" | 52 | #define REVISION "$Revision$" |
53 | #define COPYRIGHT "1999-2002" | 53 | #define COPYRIGHT "1999-2002" |
54 | #define AUTHOR "Ethan Galstad" | 54 | #define AUTHOR "Ethan Galstad" |
@@ -162,14 +162,14 @@ process_arguments (int argc, char **argv) | |||
162 | 162 | ||
163 | switch (c) { | 163 | switch (c) { |
164 | case '?': /* print short usage statement if args not parsable */ | 164 | case '?': /* print short usage statement if args not parsable */ |
165 | printf ("%s: Unknown argument: %s\n\n", PROGNAME, optarg); | 165 | printf ("%s: Unknown argument: %s\n\n", progname, optarg); |
166 | print_usage (); | 166 | print_usage (); |
167 | exit (STATE_UNKNOWN); | 167 | exit (STATE_UNKNOWN); |
168 | case 'h': /* help */ | 168 | case 'h': /* help */ |
169 | print_help (); | 169 | print_help (); |
170 | exit (STATE_OK); | 170 | exit (STATE_OK); |
171 | case 'V': /* version */ | 171 | case 'V': /* version */ |
172 | print_revision (PROGNAME, REVISION); | 172 | print_revision (progname, REVISION); |
173 | exit (STATE_OK); | 173 | exit (STATE_OK); |
174 | case 'c': /* critical */ | 174 | case 'c': /* critical */ |
175 | if (!is_intnonneg (optarg)) | 175 | if (!is_intnonneg (optarg)) |
@@ -207,7 +207,7 @@ process_arguments (int argc, char **argv) | |||
207 | void | 207 | void |
208 | print_usage (void) | 208 | print_usage (void) |
209 | { | 209 | { |
210 | printf ("Usage: %s -w <users> -c <users>\n", PROGNAME); | 210 | printf ("Usage: %s -w <users> -c <users>\n", progname); |
211 | } | 211 | } |
212 | 212 | ||
213 | 213 | ||
@@ -217,7 +217,7 @@ print_usage (void) | |||
217 | void | 217 | void |
218 | print_help (void) | 218 | print_help (void) |
219 | { | 219 | { |
220 | print_revision (PROGNAME, REVISION); | 220 | print_revision (progname, REVISION); |
221 | printf | 221 | printf |
222 | ("Copyright (c) " COPYRIGHT " " AUTHOR "(" EMAIL ")\n\n" | 222 | ("Copyright (c) " COPYRIGHT " " AUTHOR "(" EMAIL ")\n\n" |
223 | "This plugin checks the number of users currently logged in on the local\n" | 223 | "This plugin checks the number of users currently logged in on the local\n" |