diff --git a/CHANGELOG b/CHANGELOG index a9136ea..2577615 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -14,7 +14,8 @@ version 2.80 when the upstream namesevers do not support DNSSEC, and in this case no DNSSEC validation at all is occuring. - + Fix DHCP broken-ness when --no-ping AND --dhcp-sequential-ip + are set. Thanks to Daniel Miess for help with this. version 2.79 diff --git a/src/dhcp.c b/src/dhcp.c index 5a8daec..4d29525 100644 --- a/src/dhcp.c +++ b/src/dhcp.c @@ -678,7 +678,7 @@ struct ping_result *do_icmp_ping(time_t now, struct in_addr addr, unsigned int h if ((count >= max) || option_bool(OPT_NO_PING) || loopback) { /* overloaded, or configured not to check, loopback interface, return "not in use" */ - dummy.hash = 0; + dummy.hash = hash; return &dummy; } else if (icmp_ping(addr))