Code

check_ntp and check_ntp_peer now show proper jitter/stratum thresholds longopts in...
authorThomas Guyot-Sionnest <dermoth@users.sourceforge.net>
Sat, 5 Apr 2008 08:02:47 +0000 (08:02 +0000)
committerThomas Guyot-Sionnest <dermoth@users.sourceforge.net>
Sat, 5 Apr 2008 08:02:47 +0000 (08:02 +0000)
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1977 f882894a-f735-0410-b71e-b25c423dba1c

NEWS
plugins/check_ntp.c
plugins/check_ntp_peer.c

diff --git a/NEWS b/NEWS
index 57bf838904d7785e29ad295377f17c11393b2977..72da71d3eca36c720794069d5b9b2daeffae6376 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -16,6 +16,7 @@ This file documents the major additions and syntax changes between releases.
        Reverted back to using pst3 for Solaris systems. Fixed issues re: -m64 needed to compile on 64bit systems
        If applicable, Gettext linked dynamically instead of statically
        check_dig can now pass arguments dig by using -A/--dig-arguments (#1874041/#1889453)
+       check_ntp and check_ntp_peer now show proper jitter/stratum thresholds longopts in --help
 
 1.4.11 13th December 2007
        Fixed check_http regression in 1.4.10 where following redirects to
index 6f965cec774c499004f3a4ab66bcbc56927b0562..28a8f89956db0c947e2d16ad4ae69db64cbbd8b0 100644 (file)
@@ -849,9 +849,9 @@ void print_help(void){
        printf ("    %s\n", _("Offset to result in warning status (seconds)"));
        printf (" %s\n", "-c, --critical=THRESHOLD");
        printf ("    %s\n", _("Offset to result in critical status (seconds)"));
-       printf (" %s\n", "-j, --warning=THRESHOLD");
+       printf (" %s\n", "-j, --jwarn=THRESHOLD");
        printf ("    %s\n", _("Warning threshold for jitter"));
-       printf (" %s\n", "-k, --critical=THRESHOLD");
+       printf (" %s\n", "-k, --jcrit=THRESHOLD");
        printf ("    %s\n", _("Critical threshold for jitter"));
        printf (_(UT_TIMEOUT), DEFAULT_SOCKET_TIMEOUT);
        printf (_(UT_VERBOSE));
index 753b7b25b0a964d3e7af78793e719cfc64a39e42..536883d546ca6c5c8f4ce3fe9d80eee0dc298463 100644 (file)
@@ -645,13 +645,13 @@ void print_help(void){
        printf ("    %s\n", _("Offset to result in warning status (seconds)"));
        printf (" %s\n", "-c, --critical=THRESHOLD");
        printf ("    %s\n", _("Offset to result in critical status (seconds)"));
-       printf (" %s\n", "-W, --warning=THRESHOLD");
+       printf (" %s\n", "-W, --swarn=THRESHOLD");
        printf ("    %s\n", _("Warning threshold for stratum"));
-       printf (" %s\n", "-C, --critical=THRESHOLD");
+       printf (" %s\n", "-C, --scrit=THRESHOLD");
        printf ("    %s\n", _("Critical threshold for stratum"));
-       printf (" %s\n", "-j, --warning=THRESHOLD");
+       printf (" %s\n", "-j, --jwarn=THRESHOLD");
        printf ("    %s\n", _("Warning threshold for jitter"));
-       printf (" %s\n", "-k, --critical=THRESHOLD");
+       printf (" %s\n", "-k, --jcrit=THRESHOLD");
        printf ("    %s\n", _("Critical threshold for jitter"));
        printf (_(UT_TIMEOUT), DEFAULT_SOCKET_TIMEOUT);
        printf (_(UT_VERBOSE));