From a895bca1af8ce4cf4de923b3a43050283905b861 Mon Sep 17 00:00:00 2001 From: Karl DeBisschop Date: Tue, 23 Mar 2004 06:35:44 +0000 Subject: 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 diff --git a/plugins/check_fping.c b/plugins/check_fping.c index dff7ff9..1a53677 100644 --- a/plugins/check_fping.c +++ b/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; } -- cgit v0.10-9-g596f