summaryrefslogtreecommitdiffstats
path: root/plugins/check_ping.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/check_ping.c')
-rw-r--r--plugins/check_ping.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/plugins/check_ping.c b/plugins/check_ping.c
index eb3a6db..a4efc6c 100644
--- a/plugins/check_ping.c
+++ b/plugins/check_ping.c
@@ -399,7 +399,11 @@ validate_arguments ()
399 if (max_packets == -1) 399 if (max_packets == -1)
400 max_packets = DEFAULT_MAX_PACKETS; 400 max_packets = DEFAULT_MAX_PACKETS;
401 401
402 max_seconds = crta / 1000.0 * max_packets + max_packets; 402 max_seconds = crta * max_packets;
403 /* Round up max_seconds because we use only the int part */
404 if (max_seconds != (int)max_seconds)
405 max_seconds = (int)max_seconds + 1;
406
403 if (max_seconds > timeout_interval) 407 if (max_seconds > timeout_interval)
404 timeout_interval = (int)max_seconds; 408 timeout_interval = (int)max_seconds;
405 409