summaryrefslogtreecommitdiff
path: root/server/failover.c
diff options
context:
space:
mode:
authorDavid Hankins <dhankins@isc.org>2007-12-13 16:59:10 +0000
committerDavid Hankins <dhankins@isc.org>2007-12-13 16:59:10 +0000
commit99363a74147922ac94a57dced75b2c9b20e7c77b (patch)
treed7fcdeb74686ac94308e48507ae407f38142d7a4 /server/failover.c
parent00638355f16cb656add6785abe34521f24aab9c2 (diff)
downloadisc-dhcp-99363a74147922ac94a57dced75b2c9b20e7c77b.tar.gz
- 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]
Diffstat (limited to 'server/failover.c')
-rw-r--r--server/failover.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/server/failover.c b/server/failover.c
index 0621077d..ced3447c 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";