diff options
author | Karl DeBisschop <kdebisschop@users.sourceforge.net> | 2004-03-23 06:35:44 +0000 |
---|---|---|
committer | Karl DeBisschop <kdebisschop@users.sourceforge.net> | 2004-03-23 06:35:44 +0000 |
commit | a895bca1af8ce4cf4de923b3a43050283905b861 (patch) | |
tree | 29e9646be8c69c7354742da7c6e2c8ccf9576774 /plugins | |
parent | 757b3f4a7772580f4dd27961fb10193957182916 (diff) | |
download | monitoring-plugins-a895bca1af8ce4cf4de923b3a43050283905b861.tar.gz |
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
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/check_fping.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/check_fping.c b/plugins/check_fping.c index dff7ff99..1a536772 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; } |