]> git.ipfire.org Git - thirdparty/dhcpcd.git/commitdiff
send_request is no longer a public interface.
authorRoy Marples <roy@marples.name>
Thu, 18 Dec 2008 10:25:52 +0000 (10:25 +0000)
committerRoy Marples <roy@marples.name>
Thu, 18 Dec 2008 10:25:52 +0000 (10:25 +0000)
dhcpcd.c
dhcpcd.h

index e691eb2c4cd30c1a7a3ac287f47ec8683f942b41..49d48a8eb7916c1025d81772a4540fbd0ad3d2c7 100644 (file)
--- 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);
index a70f909e25f10af88b602f8433b7f611a7a558b3..07d69c24ee783f37b26a1fd62d4d2463961aedcb 100644 (file)
--- 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 *);