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_dig.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_dig.c')
-rw-r--r-- | plugins/check_dig.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/check_dig.c b/plugins/check_dig.c index e4f8632..5c6f1e1 100644 --- a/plugins/check_dig.c +++ b/plugins/check_dig.c | |||
@@ -25,7 +25,7 @@ | |||
25 | #include "utils.h" | 25 | #include "utils.h" |
26 | #include "popen.h" | 26 | #include "popen.h" |
27 | 27 | ||
28 | #define PROGNAME "check_dig" | 28 | const char *progname = "check_dig"; |
29 | #define REVISION "$Revision$" | 29 | #define REVISION "$Revision$" |
30 | #define COPYRIGHT "2000-2002" | 30 | #define COPYRIGHT "2000-2002" |
31 | #define AUTHOR "Karl DeBisschop" | 31 | #define AUTHOR "Karl DeBisschop" |
@@ -197,7 +197,7 @@ process_arguments (int argc, char **argv) | |||
197 | } | 197 | } |
198 | break; | 198 | break; |
199 | case 'V': /* version */ | 199 | case 'V': /* version */ |
200 | print_revision (PROGNAME, "$Revision$"); | 200 | print_revision (progname, "$Revision$"); |
201 | exit (STATE_OK); | 201 | exit (STATE_OK); |
202 | case 'h': /* help */ | 202 | case 'h': /* help */ |
203 | print_help (); | 203 | print_help (); |
@@ -240,7 +240,7 @@ validate_arguments (void) | |||
240 | void | 240 | void |
241 | print_help (void) | 241 | print_help (void) |
242 | { | 242 | { |
243 | print_revision (PROGNAME, "$Revision$"); | 243 | print_revision (progname, "$Revision$"); |
244 | printf | 244 | printf |
245 | ("Copyright (c) %s %s <%s>\n\n%s\n", | 245 | ("Copyright (c) %s %s <%s>\n\n%s\n", |
246 | COPYRIGHT, AUTHOR, EMAIL, SUMMARY); | 246 | COPYRIGHT, AUTHOR, EMAIL, SUMMARY); |
@@ -272,5 +272,5 @@ print_usage (void) | |||
272 | printf | 272 | printf |
273 | ("Usage: %s -H host -l lookup [-t timeout] [-v]\n" | 273 | ("Usage: %s -H host -l lookup [-t timeout] [-v]\n" |
274 | " %s --help\n" | 274 | " %s --help\n" |
275 | " %s --version\n", PROGNAME, PROGNAME, PROGNAME); | 275 | " %s --version\n", progname, progname, progname); |
276 | } | 276 | } |