diff options
author | Holger Weiss <holger@zedat.fu-berlin.de> | 2012-08-10 13:05:31 +0200 |
---|---|---|
committer | Holger Weiss <holger@zedat.fu-berlin.de> | 2012-08-10 13:05:31 +0200 |
commit | d3c9728ebf05b137c50e4ad8616cd0d40847b5c7 (patch) | |
tree | c144d0271a9c6fce14e0eb187101f8d5b70c5535 | |
parent | 6b844aea9f285a545ffbacb8b03e1cf7da55a69a (diff) | |
download | monitoring-plugins-d3c9728ebf05b137c50e4ad8616cd0d40847b5c7.tar.gz |
check_http: Add missing newline to --help output
-rw-r--r-- | plugins/check_http.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/check_http.c b/plugins/check_http.c index 63addfcc..ce0e4079 100644 --- a/plugins/check_http.c +++ b/plugins/check_http.c @@ -1434,14 +1434,14 @@ print_help (void) printf (" %s\n", _("When the 'www.verisign.com' server returns its content within 5 seconds,")); printf (" %s\n", _("a STATE_OK will be returned. When the server returns its content but exceeds")); printf (" %s\n", _("the 5-second threshold, a STATE_WARNING will be returned. When an error occurs,")); - printf (" %s\n\n", _("a STATE_CRITICAL will be returned.")); - + printf (" %s\n", _("a STATE_CRITICAL will be returned.")); + printf ("\n"); printf (" %s\n\n", "CHECK CERTIFICATE: check_http -H www.verisign.com -C 14"); printf (" %s\n", _("When the certificate of 'www.verisign.com' is valid for more than 14 days,")); printf (" %s\n", _("a STATE_OK is returned. When the certificate is still valid, but for less than")); printf (" %s\n", _("14 days, a STATE_WARNING is returned. A STATE_CRITICAL will be returned when")); printf (" %s\n", _("the certificate is expired.")); - + printf ("\n"); printf (" %s\n\n", "CHECK CERTIFICATE: check_http -H www.verisign.com -C 30,14"); printf (" %s\n", _("When the certificate of 'www.verisign.com' is valid for more than 30 days,")); printf (" %s\n", _("a STATE_OK is returned. When the certificate is still valid, but for less than")); |