]> git.ipfire.org Git - thirdparty/dhcp.git/commitdiff
Fix up function declaration formatting.
authorTed Lemon <source@isc.org>
Thu, 22 Feb 2001 07:30:21 +0000 (07:30 +0000)
committerTed Lemon <source@isc.org>
Thu, 22 Feb 2001 07:30:21 +0000 (07:30 +0000)
server/failover.c

index 398f6e65449c3c60fc9a64a85f1b44f731b6b041..0320740a52cb8ba41acc2c669713ddd37e8b7f4e 100644 (file)
@@ -43,7 +43,7 @@
 
 #ifndef lint
 static char copyright[] =
-"$Id: failover.c,v 1.35 2001/02/22 00:15:54 neild Exp $ Copyright (c) 1999-2001 The Internet Software Consortium.  All rights reserved.\n";
+"$Id: failover.c,v 1.36 2001/02/22 07:30:21 mellon Exp $ Copyright (c) 1999-2001 The Internet Software Consortium.  All rights reserved.\n";
 #endif /* not lint */
 
 #include "dhcpd.h"
@@ -2119,7 +2119,8 @@ int dhcp_failover_queue_update (struct lease *lease, int immediate)
        return 1;
 }
 
-int dhcp_failover_send_acks (dhcp_failover_state_t *state) {
+int dhcp_failover_send_acks (dhcp_failover_state_t *state)
+{
        failover_message_t *msg = (failover_message_t *)0;
 
        /* Must commit all leases prior to acking them. */
@@ -2147,7 +2148,8 @@ int dhcp_failover_send_acks (dhcp_failover_state_t *state) {
        return 1;
 }
 
-void dhcp_failover_toack_queue_timeout (void *vs) {
+void dhcp_failover_toack_queue_timeout (void *vs)
+{
        dhcp_failover_state_t *state = vs;
        dhcp_failover_send_acks (state);
 }
@@ -2903,7 +2905,8 @@ const char *dhcp_failover_message_name (unsigned type)
        }
 }
 
-const char *dhcp_failover_option_name (unsigned type) {
+const char *dhcp_failover_option_name (unsigned type)
+{
        switch (type) {
              case FTO_BINDING_STATUS:
                return "binding-status";