2
0
mirror of https://gitlab.isc.org/isc-projects/dhcp synced 2025-08-22 18:07:25 +00:00

- A cosmetic bug in DHCPDECLINE processing was fixed which caused all

successful DHCPDECLINEs to be logged as "not found" rather than
  "abandoned".  [ISC-Bugs #18605]
This commit is contained in:
David Hankins 2008-09-11 16:11:46 +00:00
parent d104d45bfe
commit a4ffedd162
2 changed files with 8 additions and 1 deletions

View File

@ -48,6 +48,12 @@ work on other platforms. Please report any problems and suggested fixes to
<dhcp-users@isc.org>.
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.

View File

@ -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";