Code

Fix help text of check_ntp_* (Bug #1880095)
authorThomas Guyot-Sionnest <dermoth@users.sourceforge.net>
Sat, 26 Jan 2008 15:55:03 +0000 (15:55 +0000)
committerThomas Guyot-Sionnest <dermoth@users.sourceforge.net>
Sat, 26 Jan 2008 15:55:03 +0000 (15:55 +0000)
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1908 f882894a-f735-0410-b71e-b25c423dba1c

NEWS
THANKS.in
plugins/check_ntp_peer.c
plugins/check_ntp_time.c

diff --git a/NEWS b/NEWS
index 27dc51d06cfec7edc29307e16cba676fa506ec7e..8e5a4946780eb22161eda8b53f6d0e9fa9eab4fe 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -7,6 +7,7 @@ This file documents the major additions and syntax changes between releases.
        Fix segfault in check_ntp_time and (deprecated) check_ntp. (Bug #1862300)
        check_disk should now work with large file systems (2TB+) on all archs that supports it
        Fixed check_disk disk usage calculation when using --group=NAME (related to bug #1348746)
+       Fix help text of check_ntp_* (Bug #1880095)
 
 1.4.11 13th December 2007
        Fixed check_http regression in 1.4.10 where following redirects to
index abec771d03723ccdaae1136bc2e48630d3456c34..2def3b11c631d565169f2f5bdc26a612cc6489bd 100644 (file)
--- a/THANKS.in
+++ b/THANKS.in
@@ -232,3 +232,4 @@ Tom Payerle
 Alessandro Ren
 Harald Jenny
 Matthias Urlichs
+Jan Wagner
index 3e518bc23503a7d1c6fd3202587161c7b0e2a14d..d1b8b27b27608e69a6de1eeec5c6b443c3220d82 100644 (file)
@@ -642,7 +642,7 @@ void print_help(void){
        printf ("    %s\n", _("Offset to result in critical status (seconds)"));
        printf (" %s\n", "-W, --warning=THRESHOLD");
        printf ("    %s\n", _("Warning threshold for stratum"));
-       printf (" %s\n", "-W, --critical=THRESHOLD");
+       printf (" %s\n", "-C, --critical=THRESHOLD");
        printf ("    %s\n", _("Critical threshold for stratum"));
        printf (" %s\n", "-j, --warning=THRESHOLD");
        printf ("    %s\n", _("Warning threshold for jitter"));
index 767dcd9494f6cfdd7f7e50b63b2d8db05a569486..16e4c3c7663b6257a737d68a546b22c6b12a4fb9 100644 (file)
@@ -631,7 +631,6 @@ void
 print_usage(void)
 {
        printf (_("Usage:"));
-       printf(" %s -H <host> [-w <warn>] [-c <crit>] [-W <warn>] [-C <crit>]\n", progname);
-       printf("       [-j <warn>] [-k <crit>] [-v verbose]\n");
+       printf(" %s -H <host> [-w <warn>] [-c <crit>] [-v verbose]\n", progname);
 }