2
0
mirror of https://gitlab.isc.org/isc-projects/dhcp synced 2025-08-31 22:35: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

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