Просмотр исходного кода

Fix the way check_ping calculate the maximum run time

git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1561 f882894a-f735-0410-b71e-b25c423dba1c
Thomas Guyot-Sionnest 19 лет назад
Родитель
Сommit
a61a5ead01
1 измененных файлов с 5 добавлено и 1 удалено
  1. 5 1
      plugins/check_ping.c

+ 5 - 1
plugins/check_ping.c

@@ -399,7 +399,11 @@ validate_arguments ()
 	if (max_packets == -1)
 	if (max_packets == -1)
 		max_packets = DEFAULT_MAX_PACKETS;
 		max_packets = DEFAULT_MAX_PACKETS;
 
 
-	max_seconds = crta / 1000.0 * max_packets + 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;
+
 	if (max_seconds > timeout_interval)
 	if (max_seconds > timeout_interval)
 		timeout_interval = (int)max_seconds;
 		timeout_interval = (int)max_seconds;