summaryrefslogtreecommitdiffstats
path: root/plugins/check_smtp.c
diff options
context:
space:
mode:
authorKarl DeBisschop <kdebisschop@users.sourceforge.net>2003-01-13 12:15:16 (GMT)
committerKarl DeBisschop <kdebisschop@users.sourceforge.net>2003-01-13 12:15:16 (GMT)
commit0c3386274ef5002dffc20337ef02407f24d7400c (patch)
tree1e78bac7844a548e56a642b35acfe1fd67342f71 /plugins/check_smtp.c
parentde5650f28e4e43a7264913953f95a75d8afe23f0 (diff)
downloadmonitoring-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_smtp.c')
-rw-r--r--plugins/check_smtp.c8
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" 42const 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)
340void 340void
341print_help (void) 341print_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}