diff options
Diffstat (limited to 'plugins/check_mrtg.c')
-rw-r--r-- | plugins/check_mrtg.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/plugins/check_mrtg.c b/plugins/check_mrtg.c index 80c9b00..e26e2e6 100644 --- a/plugins/check_mrtg.c +++ b/plugins/check_mrtg.c | |||
@@ -23,7 +23,7 @@ | |||
23 | * | 23 | * |
24 | *****************************************************************************/ | 24 | *****************************************************************************/ |
25 | 25 | ||
26 | #define PROGNAME "check_mrtg" | 26 | const char *progname = "check_mrtg"; |
27 | #define REVISION "$Revision$" | 27 | #define REVISION "$Revision$" |
28 | #define COPYRIGHT "Copyright (c) 1999-2001 Ethan Galstad" | 28 | #define COPYRIGHT "Copyright (c) 1999-2001 Ethan Galstad" |
29 | 29 | ||
@@ -287,7 +287,7 @@ process_arguments (int argc, char **argv) | |||
287 | units_label = optarg; | 287 | units_label = optarg; |
288 | break; | 288 | break; |
289 | case 'V': /* version */ | 289 | case 'V': /* version */ |
290 | print_revision (PROGNAME, REVISION); | 290 | print_revision (progname, REVISION); |
291 | exit (STATE_OK); | 291 | exit (STATE_OK); |
292 | case 'h': /* help */ | 292 | case 'h': /* help */ |
293 | print_help (); | 293 | print_help (); |
@@ -308,7 +308,7 @@ process_arguments (int argc, char **argv) | |||
308 | else | 308 | else |
309 | terminate (STATE_UNKNOWN, | 309 | terminate (STATE_UNKNOWN, |
310 | "%s is not a valid expiration time\nUse '%s -h' for additional help\n", | 310 | "%s is not a valid expiration time\nUse '%s -h' for additional help\n", |
311 | argv[c], PROGNAME); | 311 | argv[c], progname); |
312 | } | 312 | } |
313 | 313 | ||
314 | if (argc > c && strcmp (argv[c], "MAX") == 0) { | 314 | if (argc > c && strcmp (argv[c], "MAX") == 0) { |
@@ -359,7 +359,7 @@ validate_arguments (void) | |||
359 | void | 359 | void |
360 | print_help (void) | 360 | print_help (void) |
361 | { | 361 | { |
362 | print_revision (PROGNAME, REVISION); | 362 | print_revision (progname, REVISION); |
363 | printf ("%s\n\n%s\n", COPYRIGHT, SUMMARY); | 363 | printf ("%s\n\n%s\n", COPYRIGHT, SUMMARY); |
364 | print_usage (); | 364 | print_usage (); |
365 | printf ("\nOptions:\n" LONGOPTIONS "\n" DESCRIPTION "\n"); | 365 | printf ("\nOptions:\n" LONGOPTIONS "\n" DESCRIPTION "\n"); |
@@ -377,5 +377,5 @@ print_usage (void) | |||
377 | " %s -h for detailed help\n" | 377 | " %s -h for detailed help\n" |
378 | " %s -V for version information\n", | 378 | " %s -V for version information\n", |
379 | #endif | 379 | #endif |
380 | PROGNAME, OPTIONS, PROGNAME, PROGNAME); | 380 | progname, OPTIONS, progname, progname); |
381 | } | 381 | } |