From 08d81dc7bd9a0c292b5dd7494da4b85cacb1c210 Mon Sep 17 00:00:00 2001 From: Thomas Guyot-Sionnest Date: Sat, 26 Jan 2008 15:55:03 +0000 Subject: Fix help text of check_ntp_* (Bug #1880095) git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1908 f882894a-f735-0410-b71e-b25c423dba1c diff --git a/NEWS b/NEWS index 27dc51d..8e5a494 100644 --- 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 diff --git a/THANKS.in b/THANKS.in index abec771..2def3b1 100644 --- a/THANKS.in +++ b/THANKS.in @@ -232,3 +232,4 @@ Tom Payerle Alessandro Ren Harald Jenny Matthias Urlichs +Jan Wagner diff --git a/plugins/check_ntp_peer.c b/plugins/check_ntp_peer.c index 3e518bc..d1b8b27 100644 --- a/plugins/check_ntp_peer.c +++ b/plugins/check_ntp_peer.c @@ -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")); diff --git a/plugins/check_ntp_time.c b/plugins/check_ntp_time.c index 767dcd9..16e4c3c 100644 --- a/plugins/check_ntp_time.c +++ b/plugins/check_ntp_time.c @@ -631,7 +631,6 @@ void print_usage(void) { printf (_("Usage:")); - printf(" %s -H [-w ] [-c ] [-W ] [-C ]\n", progname); - printf(" [-j ] [-k ] [-v verbose]\n"); + printf(" %s -H [-w ] [-c ] [-v verbose]\n", progname); } -- cgit v0.10-9-g596f