From c40118ace3596de327633e2f95782194a8c50751 Mon Sep 17 00:00:00 2001 From: Ton Voon Date: Sun, 11 Mar 2007 01:57:52 +0000 Subject: Fixed some help display. Removed -L from usage as deprecated option git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1636 f882894a-f735-0410-b71e-b25c423dba1c diff --git a/plugins/check_ping.c b/plugins/check_ping.c index aa686a6..9ddc252 100644 --- a/plugins/check_ping.c +++ b/plugins/check_ping.c @@ -563,14 +563,14 @@ print_help (void) printf (" %s\n", "-c, --critical=THRESHOLD"); printf (" %s\n", _("critical threshold pair")); printf (" %s\n", "-p, --packets=INTEGER"); - printf (" %s\n", _("number of ICMP ECHO packets to send")); - printf (_("(Default: %d)"), DEFAULT_MAX_PACKETS); + printf (" %s ", _("number of ICMP ECHO packets to send")); + printf (_("(Default: %d)\n"), DEFAULT_MAX_PACKETS); printf (" %s\n", "-L, --link"); printf (" %s\n", _("show HTML in the plugin output (obsoleted by urlize)")); printf (_(UT_TIMEOUT), DEFAULT_SOCKET_TIMEOUT); - printf ("%s\n", _("THRESHOLD is ,%% where is the round trip average travel")); + printf ("%s\n", _("THRESHOLD is ,% where is the round trip average travel")); printf ("%s\n", _("time (ms) which triggers a WARNING or CRITICAL state, and is the")); printf ("%s\n", _("percentage of packet loss to trigger an alarm state.")); @@ -591,5 +591,5 @@ print_usage (void) { printf (_("Usage:")); printf ("%s -H -w ,%% -c ,%%\n", progname); - printf (" [-p packets] [-t timeout] [-L] [-4|-6]\n"); + printf (" [-p packets] [-t timeout] [-4|-6]\n"); } -- cgit v0.10-9-g596f