Răsfoiți Sursa

check was supposed to be agains ms - got munged wfixeg the perfdata output to be in seconds

git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@858 f882894a-f735-0410-b71e-b25c423dba1c
Karl DeBisschop 22 ani în urmă
părinte
comite
a895bca1af
1 a modificat fișierele cu 2 adăugiri și 2 ștergeri
  1. 2 2
      plugins/check_fping.c

+ 2 - 2
plugins/check_fping.c

@@ -263,7 +263,7 @@ process_arguments (int argc, char **argv)
 		case 'c':
 			get_threshold (optarg, rv);
 			if (rv[RTA]) {
-				crta = 1e-3 * strtod (rv[RTA], NULL);
+				crta = strtod (rv[RTA], NULL);
 				crta_p = TRUE;
 				rv[RTA] = NULL;
 			}
@@ -276,7 +276,7 @@ process_arguments (int argc, char **argv)
 		case 'w':
 			get_threshold (optarg, rv);
 			if (rv[RTA]) {
-				wrta = 1e-3 * strtod (rv[RTA], NULL);
+				wrta = strtod (rv[RTA], NULL);
 				wrta_p = TRUE;
 				rv[RTA] = NULL;
 			}