From: Roy Marples Date: Thu, 18 Dec 2008 10:25:52 +0000 (+0000) Subject: send_request is no longer a public interface. X-Git-Tag: v5.0.0~144 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5f14fcaa61142ae7c5314af12a829479ecf99ea2;p=thirdparty%2Fdhcpcd.git send_request is no longer a public interface. --- diff --git a/dhcpcd.c b/dhcpcd.c index e691eb2c..49d48a8e 100644 --- a/dhcpcd.c +++ b/dhcpcd.c @@ -316,7 +316,7 @@ send_discover(void *arg) send_message((struct interface *)arg, DHCP_DISCOVER, send_discover); } -void +static void send_request(void *arg) { send_message((struct interface *)arg, DHCP_REQUEST, send_request); diff --git a/dhcpcd.h b/dhcpcd.h index a70f909e..07d69c24 100644 --- a/dhcpcd.h +++ b/dhcpcd.h @@ -113,7 +113,6 @@ extern struct interface *ifaces; int handle_args(int, char **); void handle_exit_timeout(void *); -void send_request(void *); void start_interface(void *); void start_discover(void *); void start_request(void *);