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:
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>.
|
<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
|
Changes since 4.1.0a1
|
||||||
|
|
||||||
- Corrected list of failover state values in dhcpd man page.
|
- Corrected list of failover state values in dhcpd man page.
|
||||||
|
@ -917,8 +917,9 @@ void dhcpdecline (packet, ms_nulltp)
|
|||||||
|
|
||||||
abandon_lease (lease, "declined.");
|
abandon_lease (lease, "declined.");
|
||||||
status = "abandoned";
|
status = "abandoned";
|
||||||
|
} else {
|
||||||
|
status = "not found";
|
||||||
}
|
}
|
||||||
status = "not found";
|
|
||||||
} else
|
} else
|
||||||
status = "ignored";
|
status = "ignored";
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user