diff --git a/RELNOTES b/RELNOTES index 08411706..ea8b5ca6 100644 --- a/RELNOTES +++ b/RELNOTES @@ -48,6 +48,12 @@ work on other platforms. Please report any problems and suggested fixes to . + Changes since 4.1.0a2 + +- A cosmetic bug in DHCPDECLINE processing was fixed which caused all + successful DHCPDECLINEs to be logged as "not found" rather than + "abandoned". + Changes since 4.1.0a1 - Corrected list of failover state values in dhcpd man page. diff --git a/server/dhcp.c b/server/dhcp.c index 72e34382..d26fc000 100644 --- a/server/dhcp.c +++ b/server/dhcp.c @@ -917,8 +917,9 @@ void dhcpdecline (packet, ms_nulltp) abandon_lease (lease, "declined."); status = "abandoned"; + } else { + status = "not found"; } - status = "not found"; } else status = "ignored";