Dear all, in server/failover.c of dhcp-3.0.1rc14 there existed a compile error: an argument to the format string was missing. The attached patch fixes this problem. Please apply. wbr, Lukas -- Lukas Ruf | Wanna know anything about raw | | IP? -> | eMail Style Guide: | -- Attached file included as plaintext by Ecartis -- diff -ruwbB dhcp-3.0.1rc14/server/failover.c dhcp-3.0.1rc14-fixed/server/failover.c --- dhcp-3.0.1rc14/server/failover.c 2004-06-17 22:54:40.000000000 +0200 +++ dhcp-3.0.1rc14-fixed/server/failover.c 2004-06-23 11:28:39.000000000 +0200 @@ -4514,7 +4514,9 @@ binding_state_print (lease -> binding_state), binding_state_print (msg -> binding_status)) >= sizeof outbuf) - log_fatal ("%s: impossible outbuf overflow"); + { /* format-argument '%s' added, ruf@lpr.ch, 2004-06-23 */ + log_fatal ("%s: impossible outbuf overflow", __FILE__); + } dhcp_failover_send_bind_ack (state, msg, FTR_FATAL_CONFLICT,