diff options
Diffstat (limited to 'plugins/check_dig.c')
-rw-r--r-- | plugins/check_dig.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/check_dig.c b/plugins/check_dig.c index 5bed80d..8f88316 100644 --- a/plugins/check_dig.c +++ b/plugins/check_dig.c | |||
@@ -20,7 +20,7 @@ | |||
20 | 20 | ||
21 | const char *progname = "check_dig"; | 21 | const char *progname = "check_dig"; |
22 | const char *revision = "$Revision$"; | 22 | const char *revision = "$Revision$"; |
23 | const char *copyright = "2002-2003"; | 23 | const char *copyright = "2002-2004"; |
24 | const char *email = "nagiosplug-devel@lists.sourceforge.net"; | 24 | const char *email = "nagiosplug-devel@lists.sourceforge.net"; |
25 | 25 | ||
26 | #include "common.h" | 26 | #include "common.h" |
@@ -221,7 +221,7 @@ process_arguments (int argc, char **argv) | |||
221 | print_help (); | 221 | print_help (); |
222 | exit (STATE_OK); | 222 | exit (STATE_OK); |
223 | case 'V': /* version */ | 223 | case 'V': /* version */ |
224 | print_revision (progname, "$Revision$"); | 224 | print_revision (progname, revision); |
225 | exit (STATE_OK); | 225 | exit (STATE_OK); |
226 | case 'H': /* hostname */ | 226 | case 'H': /* hostname */ |
227 | if (is_host (optarg)) { | 227 | if (is_host (optarg)) { |
@@ -318,7 +318,7 @@ print_help (void) | |||
318 | printf ("Copyright (c) 2000 Karl DeBisschop <kdebisschop@users.sourceforge.net>\n"); | 318 | printf ("Copyright (c) 2000 Karl DeBisschop <kdebisschop@users.sourceforge.net>\n"); |
319 | printf (COPYRIGHT, copyright, email); | 319 | printf (COPYRIGHT, copyright, email); |
320 | 320 | ||
321 | printf (_("Test the DNS service on the specified host using dig\n")); | 321 | printf (_("Test the DNS service on the specified host using dig\n\n")); |
322 | 322 | ||
323 | print_usage (); | 323 | print_usage (); |
324 | 324 | ||