diff options
Diffstat (limited to 'plugins/check_ping.c')
-rw-r--r-- | plugins/check_ping.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/plugins/check_ping.c b/plugins/check_ping.c index a4efc6c1..eb3a6dbf 100644 --- a/plugins/check_ping.c +++ b/plugins/check_ping.c @@ -399,11 +399,7 @@ validate_arguments () if (max_packets == -1) max_packets = DEFAULT_MAX_PACKETS; - max_seconds = crta * max_packets; - /* Round up max_seconds because we use only the int part */ - if (max_seconds != (int)max_seconds) - max_seconds = (int)max_seconds + 1; - + max_seconds = crta / 1000.0 * max_packets + max_packets; if (max_seconds > timeout_interval) timeout_interval = (int)max_seconds; |