Fix removing of unreachable hosts when doing loop (Thomas Liske, #13 #23)

pull/34/head
David Schweikert 13 years ago
commit ed4202f84f

@ -2,10 +2,11 @@ UNRELEAESD David Schweikert <david@schweikert.ch>
* Version 3.3rc1 * Version 3.3rc1
* Do not output icmp errors with -q (#1) * Do not output icmp errors with -q (#1)
* Add --enable-ipv4 and --enable-ipv6 options to configure (Niclas Zeising) * Add --enable-ipv4 and --enable-ipv6 options to configure (Niclas Zeising)
* Convert man-page source to POD for easier maintenance * Fix removing of unreachable hosts when doing loop (Thomas Liske, #13 #23)
* Set default data size to 56 bytes on all architectures (#18) * Set default data size to 56 bytes on all architectures (#18)
* Added contrib/fping.spec (Stephen Schaefer, #24) * Added contrib/fping.spec (Stephen Schaefer, #24)
* Man-page fix: TOS option typo (Thomas Liske) * Convert man-page source to POD for easier maintenance
* Man-page fix: TOS option typo (Thomas Liske, #23)
* Man-page fix: inconsistency in regards to numeric arguments (Robert Henney) * Man-page fix: inconsistency in regards to numeric arguments (Robert Henney)
* Man-page fix: better description of option -q (#15) * Man-page fix: better description of option -q (#15)

@ -1588,10 +1588,11 @@ int send_ping( int s, HOST_ENTRY *h )
}/* IF */ }/* IF */
num_unreachable++; h->num_sent++;
remove_job( h ); h->num_sent_i++;
num_pingsent++;
free( buffer ); free( buffer );
return(0); return(1);
} }
/* mark this trial as outstanding */ /* mark this trial as outstanding */

Loading…
Cancel
Save