summaryrefslogtreecommitdiffstats
path: root/plugins-root
diff options
context:
space:
mode:
authorBenoit Mortier <opensides@users.sourceforge.net>2006-10-24 21:54:06 (GMT)
committerBenoit Mortier <opensides@users.sourceforge.net>2006-10-24 21:54:06 (GMT)
commitec1f4555db7e6ba2d0a34c57c58bfad948c2a354 (patch)
tree7329dea7218ffcc0080862682f51cc7f09cd02b0 /plugins-root
parente23b863a2526872c935dfdf84856b72472c478d0 (diff)
downloadmonitoring-plugins-ec1f4555db7e6ba2d0a34c57c58bfad948c2a354.tar.gz
more fixes and removal of certain sentences not needed
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1525 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins-root')
-rw-r--r--plugins-root/check_icmp.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/plugins-root/check_icmp.c b/plugins-root/check_icmp.c
index 53017c8..0b2932b 100644
--- a/plugins-root/check_icmp.c
+++ b/plugins-root/check_icmp.c
@@ -1209,13 +1209,13 @@ print_help(void)
1209 printf (" %s", _("max packet interval (currently ")); 1209 printf (" %s", _("max packet interval (currently "));
1210 printf ("%0.3fms)\n",(float)pkt_interval / 1000); 1210 printf ("%0.3fms)\n",(float)pkt_interval / 1000);
1211 printf (" %s\n", "-I"); 1211 printf (" %s\n", "-I");
1212 printf (" %s\n", _("max target interval (currently ")); 1212 printf (" %s", _("max target interval (currently "));
1213 printf ("%0.3fms)\n", (float)target_interval / 1000); 1213 printf ("%0.3fms)\n", (float)target_interval / 1000);
1214 printf (" %s\n", "-l"); 1214 printf (" %s\n", "-l");
1215 printf (" %s\n", _("TTL on outgoing packets (currently ")); 1215 printf (" %s", _("TTL on outgoing packets (currently "));
1216 printf ("%u)", ttl); 1216 printf ("%u)", ttl);
1217 printf (" %s\n", "-t"); 1217 printf (" %s\n", "-t");
1218 printf (" %s\n",_("timeout value (seconds, currently ")); 1218 printf (" %s",_("timeout value (seconds, currently "));
1219 printf ("%u)\n", timeout); 1219 printf ("%u)\n", timeout);
1220 printf (" %s\n", "-b"); 1220 printf (" %s\n", "-b");
1221 printf (" %s\n", _("icmp packet size (currenly ignored)")); 1221 printf (" %s\n", _("icmp packet size (currenly ignored)"));
@@ -1232,9 +1232,9 @@ print_help(void)
1232 printf ("%s\n", _("are spent and CRITICAL if >= 14 hops are spent.")); 1232 printf ("%s\n", _("are spent and CRITICAL if >= 14 hops are spent."));
1233 printf ("%s\n\n", _("NOTE: Some systems decrease TTL when forming ICMP_ECHOREPLY, others do not.")); 1233 printf ("%s\n\n", _("NOTE: Some systems decrease TTL when forming ICMP_ECHOREPLY, others do not."));
1234 printf ("%s\n\n", _("The -v switch can be specified several times for increased verbosity.")); 1234 printf ("%s\n\n", _("The -v switch can be specified several times for increased verbosity."));
1235 printf ("%s\n", _("Long options are currently unsupported.")); 1235/* printf ("%s\n", _("Long options are currently unsupported."));
1236 printf ("%s\n", _("Options marked with * require an argument")); 1236 printf ("%s\n", _("Options marked with * require an argument"));
1237 1237*/
1238 printf (_(UT_SUPPORT)); 1238 printf (_(UT_SUPPORT));
1239 1239
1240 printf (_(UT_NOWARRANTY)); 1240 printf (_(UT_NOWARRANTY));
@@ -1246,5 +1246,5 @@ void
1246print_usage (void) 1246print_usage (void)
1247{ 1247{
1248 printf (_("Usage:")); 1248 printf (_("Usage:"));
1249 printf("Usage: %s [options] [-H] host1 host2 hostn\n", progname); 1249 printf(" %s [options] [-H] host1 host2 hostn\n", progname);
1250} 1250}