diff options
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 | } |