summaryrefslogtreecommitdiffstats
path: root/plugins/check_ntpd.c
diff options
context:
space:
mode:
authorThomas Guyot-Sionnest <dermoth@users.sourceforge.net>2007-11-10 22:13:43 +0000
committerThomas Guyot-Sionnest <dermoth@users.sourceforge.net>2007-11-10 22:13:43 +0000
commit05f9bbfdc28ba8200fbc620e28f06fe58e2d6d2e (patch)
treeec7cf97486c12dc82147d6335ce00b26a07092b8 /plugins/check_ntpd.c
parent6ea43dd18e4f10a30ece7aa824547b5e3d6658d4 (diff)
downloadmonitoring-plugins-05f9bbfdc28ba8200fbc620e28f06fe58e2d6d2e.tar.gz
Cleanup check_time_ntp.c (and some small cleanups on check_ntpd.c as well)
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/branches/dermoth_ntp_rework@1825 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins/check_ntpd.c')
-rw-r--r--plugins/check_ntpd.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/check_ntpd.c b/plugins/check_ntpd.c
index 2ac2a553..84ebe34d 100644
--- a/plugins/check_ntpd.c
+++ b/plugins/check_ntpd.c
@@ -1,6 +1,6 @@
1/****************************************************************************** 1/******************************************************************************
2* 2*
3* Nagios check_ntp plugin 3* Nagios check_ntpd plugin
4* 4*
5* License: GPL 5* License: GPL
6* Copyright (c) 2006 sean finney <seanius@seanius.net> 6* Copyright (c) 2006 sean finney <seanius@seanius.net>
@@ -593,12 +593,12 @@ void print_help(void){
593 printf("\n"); 593 printf("\n");
594 printf("%s\n", _("Examples:")); 594 printf("%s\n", _("Examples:"));
595 printf(" %s\n", _("Normal offset check:")); 595 printf(" %s\n", _("Normal offset check:"));
596 printf(" %s\n", ("./check_ntp -H ntpserv -w 0.5 -c 1")); 596 printf(" %s\n", ("./check_ntpd -H ntpserv -w 0.5 -c 1"));
597 printf(" %s\n", _("Check jitter too, avoiding critical notifications if jitter isn't available")); 597 printf(" %s\n", _("Check jitter too, avoiding critical notifications if jitter isn't available"));
598 printf(" %s\n", _("(See Notes above for more details on thresholds formats):")); 598 printf(" %s\n", _("(See Notes above for more details on thresholds formats):"));
599 printf(" %s\n", ("./check_ntp -H ntpserv -w 0.5 -c 1 -j -1:100 -k -1:200")); 599 printf(" %s\n", ("./check_ntpd -H ntpserv -w 0.5 -c 1 -j -1:100 -k -1:200"));
600 printf(" %s\n", _("Check only stratum:")); 600 printf(" %s\n", _("Check only stratum:"));
601 printf(" %s\n", ("./check_ntp -H ntpserv -W 4 -C 6")); 601 printf(" %s\n", ("./check_ntpd -H ntpserv -W 4 -C 6"));
602 602
603 printf (_(UT_SUPPORT)); 603 printf (_(UT_SUPPORT));
604} 604}