1
0
mirror of https://frontier.innolan.net/rainlance/amiga-fping.git synced 2025-11-23 04:24:24 +00:00

Fix fping hanging forever on permanent sendto failure (Shawn Chu, #52)

This commit is contained in:
David Schweikert
2013-11-04 23:08:19 +01:00
parent e1cdf8e1d3
commit d141744adb
2 changed files with 3 additions and 0 deletions

View File

@ -2,6 +2,7 @@ UNRELEASED
* Allow running as non-root on Mac OS X by using non-privileged ICMP (#7)
* Remove unnecessary IPv6 socket options
* Fix again compatibility issue with FreeBSD (Shawn Chu)
* Fix fping hanging forever on permanent sendto failure (Shawn Chu)
2013-10-10 David Schweikert <david@schweikert.ch>
* Version 3.6

View File

@ -1464,7 +1464,9 @@ int send_ping( int s, HOST_ENTRY *h )
h->num_sent++;
h->num_sent_i++;
h->waiting++;
num_pingsent++;
last_send_time = h->last_send_time;
free( buffer );
return(1);
}