X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=plugins%2Fcheck_mrtg.c;h=e26e2e66b7ccfae5e513ad0fce8d3773fd9f6242;hb=773af31b84dda4732b1271ec87774479c384cf35;hp=80c9b00894bd2b0766aad18214a11ed5482bf64d;hpb=2a68978c564e53cddc90882ee7776a43839dfcff;p=nagiosplug.git 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 @@ * *****************************************************************************/ -#define PROGNAME "check_mrtg" +const char *progname = "check_mrtg"; #define REVISION "$Revision$" #define COPYRIGHT "Copyright (c) 1999-2001 Ethan Galstad" @@ -287,7 +287,7 @@ process_arguments (int argc, char **argv) units_label = optarg; break; case 'V': /* version */ - print_revision (PROGNAME, REVISION); + print_revision (progname, REVISION); exit (STATE_OK); case 'h': /* help */ print_help (); @@ -308,7 +308,7 @@ process_arguments (int argc, char **argv) else terminate (STATE_UNKNOWN, "%s is not a valid expiration time\nUse '%s -h' for additional help\n", - argv[c], PROGNAME); + argv[c], progname); } if (argc > c && strcmp (argv[c], "MAX") == 0) { @@ -359,7 +359,7 @@ validate_arguments (void) void print_help (void) { - print_revision (PROGNAME, REVISION); + print_revision (progname, REVISION); printf ("%s\n\n%s\n", COPYRIGHT, SUMMARY); print_usage (); printf ("\nOptions:\n" LONGOPTIONS "\n" DESCRIPTION "\n"); @@ -377,5 +377,5 @@ print_usage (void) " %s -h for detailed help\n" " %s -V for version information\n", #endif - PROGNAME, OPTIONS, PROGNAME, PROGNAME); + progname, OPTIONS, progname, progname); }