diff options
Diffstat (limited to 'plugins/check_smtp.c')
-rw-r--r-- | plugins/check_smtp.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/check_smtp.c b/plugins/check_smtp.c index 6f17429..d8b9059 100644 --- a/plugins/check_smtp.c +++ b/plugins/check_smtp.c | |||
@@ -39,7 +39,7 @@ | |||
39 | #include "netutils.h" | 39 | #include "netutils.h" |
40 | #include "utils.h" | 40 | #include "utils.h" |
41 | 41 | ||
42 | #define PROGNAME "check_smtp" | 42 | const char *progname = "check_smtp"; |
43 | 43 | ||
44 | #define SMTP_PORT 25 | 44 | #define SMTP_PORT 25 |
45 | #define SMTP_EXPECT "220" | 45 | #define SMTP_EXPECT "220" |
@@ -294,7 +294,7 @@ process_arguments (int argc, char **argv) | |||
294 | } | 294 | } |
295 | break; | 295 | break; |
296 | case 'V': /* version */ | 296 | case 'V': /* version */ |
297 | print_revision (PROGNAME, "$Revision$"); | 297 | print_revision (progname, "$Revision$"); |
298 | exit (STATE_OK); | 298 | exit (STATE_OK); |
299 | case 'h': /* help */ | 299 | case 'h': /* help */ |
300 | print_help (); | 300 | print_help (); |
@@ -340,7 +340,7 @@ validate_arguments (void) | |||
340 | void | 340 | void |
341 | print_help (void) | 341 | print_help (void) |
342 | { | 342 | { |
343 | print_revision (PROGNAME, "$Revision$"); | 343 | print_revision (progname, "$Revision$"); |
344 | printf | 344 | printf |
345 | ("Copyright (c) 2000 Ethan Galstad/Karl DeBisschop\n\n" | 345 | ("Copyright (c) 2000 Ethan Galstad/Karl DeBisschop\n\n" |
346 | "This plugin test the SMTP service on the specified host.\n\n"); | 346 | "This plugin test the SMTP service on the specified host.\n\n"); |
@@ -381,5 +381,5 @@ print_usage (void) | |||
381 | printf | 381 | printf |
382 | ("Usage: %s -H host [-e expect] [-p port] [-f from addr] [-w warn] [-c crit] [-t timeout] [-v]\n" | 382 | ("Usage: %s -H host [-e expect] [-p port] [-f from addr] [-w warn] [-c crit] [-t timeout] [-v]\n" |
383 | " %s --help\n" | 383 | " %s --help\n" |
384 | " %s --version\n", PROGNAME, PROGNAME, PROGNAME); | 384 | " %s --version\n", progname, progname, progname); |
385 | } | 385 | } |