Code

Fix bug #1632078: critical threshold % incorrectly displayed by check_icmp
authorThomas Guyot-Sionnest <dermoth@users.sourceforge.net>
Sat, 20 Jan 2007 06:27:17 +0000 (06:27 +0000)
committerThomas Guyot-Sionnest <dermoth@users.sourceforge.net>
Sat, 20 Jan 2007 06:27:17 +0000 (06:27 +0000)
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1569 f882894a-f735-0410-b71e-b25c423dba1c

plugins-root/check_icmp.c

index 0b2932bb158e06e90a901af824b23c05462ccf70..62e3d574cbb924ab5f9b87a5afc6b6da210272e0 100644 (file)
@@ -1201,7 +1201,7 @@ print_help(void)
   printf ("%0.3fms,%u%%)\n", (float)warn.rta / 1000 , warn.pl / 1000);
   printf (" %s\n", "-c");
   printf ("    %s", _("critical threshold (currently "));
-  printf ("%0.3fms,%u%%)\n", (float)crit.rta), crit.pl;
+  printf ("%0.3fms,%u%%)\n", (float)crit.rta, crit.pl);
   printf (" %s\n", "-n");
   printf ("    %s", _("number of packets to send (currently "));
   printf ("%u)\n",packets);