diff options
author | Thomas Guyot-Sionnest <dermoth@users.sourceforge.net> | 2008-04-27 14:35:26 (GMT) |
---|---|---|
committer | Thomas Guyot-Sionnest <dermoth@users.sourceforge.net> | 2008-04-27 14:35:26 (GMT) |
commit | ed62784a0b68959fd13fe5bc53a5aef4f17fbffa (patch) | |
tree | f479a5b8ad8cac8d6dcc506ba61aa5ec3fbb5bb3 /plugins/check_dig.c | |
parent | 140a93ce6bce63df2d70841f2f78aa968ea997d6 (diff) | |
download | monitoring-plugins-ed62784a0b68959fd13fe5bc53a5aef4f17fbffa.tar.gz |
--help output cleanup (plus removal of spaces on blank lines)
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1984 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins/check_dig.c')
-rw-r--r-- | plugins/check_dig.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/plugins/check_dig.c b/plugins/check_dig.c index 72dd599..d7e1f57 100644 --- a/plugins/check_dig.c +++ b/plugins/check_dig.c | |||
@@ -3,7 +3,7 @@ | |||
3 | * Nagios check_dig plugin | 3 | * Nagios check_dig plugin |
4 | * | 4 | * |
5 | * License: GPL | 5 | * License: GPL |
6 | * Copyright (c) 2002-2007 Nagios Plugins Development Team | 6 | * Copyright (c) 2002-2008 Nagios Plugins Development Team |
7 | * | 7 | * |
8 | * Last Modified: $Date$ | 8 | * Last Modified: $Date$ |
9 | * | 9 | * |
@@ -37,7 +37,7 @@ | |||
37 | 37 | ||
38 | const char *progname = "check_dig"; | 38 | const char *progname = "check_dig"; |
39 | const char *revision = "$Revision$"; | 39 | const char *revision = "$Revision$"; |
40 | const char *copyright = "2002-2007"; | 40 | const char *copyright = "2002-2008"; |
41 | const char *email = "nagiosplug-devel@lists.sourceforge.net"; | 41 | const char *email = "nagiosplug-devel@lists.sourceforge.net"; |
42 | 42 | ||
43 | #include "common.h" | 43 | #include "common.h" |
@@ -331,9 +331,12 @@ print_help (void) | |||
331 | printf (_(UT_WARN_CRIT)); | 331 | printf (_(UT_WARN_CRIT)); |
332 | printf (_(UT_TIMEOUT), DEFAULT_SOCKET_TIMEOUT); | 332 | printf (_(UT_TIMEOUT), DEFAULT_SOCKET_TIMEOUT); |
333 | printf (_(UT_VERBOSE)); | 333 | printf (_(UT_VERBOSE)); |
334 | |||
335 | printf("\n"); | ||
334 | printf ("%s\n", _("Examples:")); | 336 | printf ("%s\n", _("Examples:")); |
335 | printf (" %s\n", "check_dig -H DNSSERVER -l www.example.com -A \"+tcp\""); | 337 | printf (" %s\n", "check_dig -H DNSSERVER -l www.example.com -A \"+tcp\""); |
336 | printf (" %s\n", "This will send a tcp query to DNSSERVER for www.example.com"); | 338 | printf (" %s\n", "This will send a tcp query to DNSSERVER for www.example.com"); |
339 | |||
337 | printf (_(UT_SUPPORT)); | 340 | printf (_(UT_SUPPORT)); |
338 | } | 341 | } |
339 | 342 | ||