From: David Hankins Date: Thu, 13 Dec 2007 16:59:10 +0000 (+0000) Subject: - A cosmetic bug during potential-conflict recovery that caused the peer's X-Git-Tag: v4_1_0a1~52 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=99363a74147922ac94a57dced75b2c9b20e7c77b;p=thirdparty%2Fdhcp.git - A cosmetic bug during potential-conflict recovery that caused the peer's 'conflict-done' state message to be logged as 'unknown-state' has been repaired. It is now logged correctly. [ISC-Bugs #17204] --- diff --git a/RELNOTES b/RELNOTES index 7a7f214f3..bee6dc6ed 100644 --- a/RELNOTES +++ b/RELNOTES @@ -62,6 +62,10 @@ suggested fixes to . - The 'min-secs' configuration parameter's log message has been updated to be more helpful. +- A cosmetic bug during potential-conflict recovery that caused the peer's + 'conflict-done' state message to be logged as 'unknown-state' has been + repaired. It is now logged correctly. + Changes since 4.0.0b3 - The reverse dns name for PTR updates on IPv6 addresses has been fixed to diff --git a/server/failover.c b/server/failover.c index 0621077da..ced3447ce 100644 --- a/server/failover.c +++ b/server/failover.c @@ -3522,6 +3522,9 @@ const char *dhcp_failover_state_name_print (enum failover_state state) case normal: return "normal"; + case conflict_done: + return "conflict-done"; + case communications_interrupted: return "communications-interrupted";