mirror of
https://gitlab.isc.org/isc-projects/dhcp
synced 2025-08-22 01:49:35 +00:00
Fix release of empty IPv6 active lease
This commit is contained in:
parent
7b22a9b4ab
commit
96b620e5a2
3
RELNOTES
3
RELNOTES
@ -86,6 +86,9 @@ suggested fixes to <dhcp-users@isc.org>.
|
||||
- NoAddrsAvail answers to SOLICITs are always ADVERTISEs even when a SOLICIT
|
||||
carries a rapid-commit option.
|
||||
|
||||
- Return in place of raise an impossible condition when one tries to release
|
||||
an empty active lease.
|
||||
|
||||
Changes since 4.0.0b3
|
||||
|
||||
- The reverse dns name for PTR updates on IPv6 addresses has been fixed to
|
||||
|
@ -1247,7 +1247,7 @@ do_release6(void *input)
|
||||
client = input;
|
||||
|
||||
if (client->active_lease == NULL)
|
||||
log_fatal("Impossible condition at %s:%d.", MDL);
|
||||
return;
|
||||
|
||||
if ((client->MRC != 0) && (client->txcount > client->MRC)) {
|
||||
log_info("Max retransmission count exceeded.");
|
||||
|
Loading…
x
Reference in New Issue
Block a user