diff options
Diffstat (limited to 'plugins/check_http.c')
-rw-r--r-- | plugins/check_http.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/check_http.c b/plugins/check_http.c index bbc76dae..de7a2db7 100644 --- a/plugins/check_http.c +++ b/plugins/check_http.c | |||
@@ -23,7 +23,7 @@ | |||
23 | * | 23 | * |
24 | *****************************************************************************/ | 24 | *****************************************************************************/ |
25 | 25 | ||
26 | #define PROGNAME "check_http" | 26 | const char *progname = "check_http"; |
27 | #define REVISION "$Revision$" | 27 | #define REVISION "$Revision$" |
28 | #define COPYRIGHT "1999-2001" | 28 | #define COPYRIGHT "1999-2001" |
29 | #define AUTHORS "Ethan Galstad/Karl DeBisschop" | 29 | #define AUTHORS "Ethan Galstad/Karl DeBisschop" |
@@ -328,7 +328,7 @@ process_arguments (int argc, char **argv) | |||
328 | exit (STATE_OK); | 328 | exit (STATE_OK); |
329 | break; | 329 | break; |
330 | case 'V': /* version */ | 330 | case 'V': /* version */ |
331 | print_revision (PROGNAME, REVISION); | 331 | print_revision (progname, REVISION); |
332 | exit (STATE_OK); | 332 | exit (STATE_OK); |
333 | break; | 333 | break; |
334 | case 't': /* timeout period */ | 334 | case 't': /* timeout period */ |
@@ -1058,7 +1058,7 @@ my_close (void) | |||
1058 | void | 1058 | void |
1059 | print_help (void) | 1059 | print_help (void) |
1060 | { | 1060 | { |
1061 | print_revision (PROGNAME, REVISION); | 1061 | print_revision (progname, REVISION); |
1062 | printf | 1062 | printf |
1063 | ("Copyright (c) %s %s <%s>\n\n%s\n", | 1063 | ("Copyright (c) %s %s <%s>\n\n%s\n", |
1064 | COPYRIGHT, AUTHORS, EMAIL, SUMMARY); | 1064 | COPYRIGHT, AUTHORS, EMAIL, SUMMARY); |
@@ -1083,5 +1083,5 @@ print_usage (void) | |||
1083 | " %s -h for detailed help\n" | 1083 | " %s -h for detailed help\n" |
1084 | " %s -V for version information\n", | 1084 | " %s -V for version information\n", |
1085 | #endif | 1085 | #endif |
1086 | PROGNAME, OPTIONS, PROGNAME, PROGNAME); | 1086 | progname, OPTIONS, progname, progname); |
1087 | } | 1087 | } |