- The omapi.1 manpage had some formatting errors repaired thanks to a patch
from Yoshihiko Sarumaru.
+- A few lines of code that were failover-specific were moved within
+ #if defined() clauses so that compilation without failover could be
+ made possible.
+
Changes since 3.0.4rc1
- The dhcp-options.5 manpage was updated to correct indentation errors
#ifndef lint
static char ocopyright[] =
-"$Id: dhcpd.c,v 1.120 2006/05/11 14:48:59 shane Exp $ Copyright 2004-2006 Internet Systems Consortium.";
+"$Id: dhcpd.c,v 1.121 2006/07/17 15:21:45 dhankins Exp $ Copyright 2004-2006 Internet Systems Consortium.";
#endif
static char copyright[] =
}
#endif
if (shutdown_state == shutdown_dhcp &&
- !failover_connection_count) {
+#if defined(FAILOVER_PROTOCOL)
+ !failover_connection_count &&
+#endif
+ ISC_TRUE) {
shutdown_state = shutdown_done;
shutdown_time = cur_time;
goto oncemore;