mirror of
https://gitlab.isc.org/isc-projects/dhcp
synced 2025-08-22 09:57:20 +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:
parent
d104d45bfe
commit
a4ffedd162
6
RELNOTES
6
RELNOTES
@ -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.
|
||||
|
@ -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";
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user