From: Steven Barth Date: Mon, 16 Jun 2014 16:25:56 +0000 (+0200) Subject: add more consistency to host file writing X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=b40f7fa3f3b48b574f513df1105d700c070aa335;p=oweals%2Fodhcpd.git add more consistency to host file writing --- diff --git a/src/dhcpv4.c b/src/dhcpv4.c index b5eeb6e..62ddab8 100644 --- a/src/dhcpv4.c +++ b/src/dhcpv4.c @@ -517,10 +517,11 @@ static struct dhcpv4_assignment* dhcpv4_lease(struct interface *iface, } else if (!assigned && a) { // Cleanup failed assignment free(a); a = NULL; - } else { - update_state = true; } + if (a) + update_state = true; + if (assigned && a) lease = a; } else if (msg == DHCPV4_MSG_RELEASE) {