From: Ted Lemon Date: Sat, 10 Jun 2000 17:55:11 +0000 (+0000) Subject: Make dhcp_failover_make_option prototype consistent with declaration. X-Git-Tag: V3-BETA-2-PATCH-1~156 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=72896e9f57d07ebf5e49b1d8a4dd1062378b9e93;p=thirdparty%2Fdhcp.git Make dhcp_failover_make_option prototype consistent with declaration. --- diff --git a/includes/dhcpd.h b/includes/dhcpd.h index 5eab48259..362a6e845 100644 --- a/includes/dhcpd.h +++ b/includes/dhcpd.h @@ -2242,10 +2242,10 @@ const char *dhcp_failover_state_name_print (enum failover_state); failover_option_t *dhcp_failover_option_printf (unsigned, char *, unsigned *, unsigned, - const char *, ...); -failover_option_t *dhcp_failover_make_option PROTO ((unsigned, char *, - unsigned *, - unsigned, ...)); + const char *, ...) + __attribute__((__format__(__printf__,5,6))); +failover_option_t *dhcp_failover_make_option (unsigned, char *, + unsigned *, unsigned, ...); isc_result_t dhcp_failover_put_message (dhcp_failover_link_t *, omapi_object_t *, int, ...); isc_result_t dhcp_failover_send_connect PROTO ((omapi_object_t *));