Code cleanup for ping

This commit is contained in:
Michiel Broek 2002-05-04 18:02:32 +00:00
parent c4ded8d10b
commit f4dbd6a0b2

View File

@ -222,7 +222,8 @@ int ping_send(struct in_addr addr)
sentlen = sendto(ping_isocket, &icmpd, ICMP4_ECHO_LEN, 0, (struct sockaddr *)&to, sizeof(to));
if (sentlen != ICMP4_ECHO_LEN) {
tasklog('+', "ping: sent %d octets, ret %d", ICMP4_ECHO_LEN, sentlen);
if (icmp_errs < ICMP_MAX_ERRS)
tasklog('+', "ping: sent %d octets, ret %d", ICMP4_ECHO_LEN, sentlen);
return -2;
}
return 0;