diff options
author | Karl DeBisschop <kdebisschop@users.sourceforge.net> | 2003-01-13 12:15:16 (GMT) |
---|---|---|
committer | Karl DeBisschop <kdebisschop@users.sourceforge.net> | 2003-01-13 12:15:16 (GMT) |
commit | 0c3386274ef5002dffc20337ef02407f24d7400c (patch) | |
tree | 1e78bac7844a548e56a642b35acfe1fd67342f71 /plugins/check_ups.c | |
parent | de5650f28e4e43a7264913953f95a75d8afe23f0 (diff) | |
download | monitoring-plugins-0c3386274ef5002dffc20337ef02407f24d7400c.tar.gz |
convert PROGANE from a define to a const char
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@238 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins/check_ups.c')
-rw-r--r-- | plugins/check_ups.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/plugins/check_ups.c b/plugins/check_ups.c index 470e3be..4c90322 100644 --- a/plugins/check_ups.c +++ b/plugins/check_ups.c | |||
@@ -56,7 +56,7 @@ | |||
56 | #include "netutils.h" | 56 | #include "netutils.h" |
57 | #include "utils.h" | 57 | #include "utils.h" |
58 | 58 | ||
59 | #define PROGNAME "check_ups" | 59 | const char *progname = "check_ups"; |
60 | #define REVISION "$Revision$" | 60 | #define REVISION "$Revision$" |
61 | #define COPYRIGHT "1999-2002" | 61 | #define COPYRIGHT "1999-2002" |
62 | #define AUTHOR "Ethan Galstad" | 62 | #define AUTHOR "Ethan Galstad" |
@@ -64,7 +64,7 @@ | |||
64 | 64 | ||
65 | #define CHECK_NONE 0 | 65 | #define CHECK_NONE 0 |
66 | 66 | ||
67 | #define PORT 3305 | 67 | #define PORT 3493 |
68 | 68 | ||
69 | #define UPS_NONE 0 /* no supported options */ | 69 | #define UPS_NONE 0 /* no supported options */ |
70 | #define UPS_UTILITY 1 /* supports utility line voltage */ | 70 | #define UPS_UTILITY 1 /* supports utility line voltage */ |
@@ -535,7 +535,7 @@ process_arguments (int argc, char **argv) | |||
535 | } | 535 | } |
536 | break; | 536 | break; |
537 | case 'V': /* version */ | 537 | case 'V': /* version */ |
538 | print_revision (PROGNAME, "$Revision$"); | 538 | print_revision (progname, "$Revision$"); |
539 | exit (STATE_OK); | 539 | exit (STATE_OK); |
540 | case 'h': /* help */ | 540 | case 'h': /* help */ |
541 | print_help (); | 541 | print_help (); |
@@ -571,7 +571,7 @@ validate_arguments (void) | |||
571 | void | 571 | void |
572 | print_help (void) | 572 | print_help (void) |
573 | { | 573 | { |
574 | print_revision (PROGNAME, "$Revision$"); | 574 | print_revision (progname, "$Revision$"); |
575 | printf | 575 | printf |
576 | ("Copyright (c) 2000 Tom Shields/Karl DeBisschop\n\n" | 576 | ("Copyright (c) 2000 Tom Shields/Karl DeBisschop\n\n" |
577 | "This plugin tests the UPS service on the specified host.\n" | 577 | "This plugin tests the UPS service on the specified host.\n" |
@@ -611,5 +611,5 @@ print_usage (void) | |||
611 | ("Usage: %s -H host [-e expect] [-p port] [-w warn] [-c crit]\n" | 611 | ("Usage: %s -H host [-e expect] [-p port] [-w warn] [-c crit]\n" |
612 | " [-t timeout] [-v]\n" | 612 | " [-t timeout] [-v]\n" |
613 | " %s --help\n" | 613 | " %s --help\n" |
614 | " %s --version\n", PROGNAME, PROGNAME, PROGNAME); | 614 | " %s --version\n", progname, progname, progname); |
615 | } | 615 | } |