diff options
Diffstat (limited to 'networking/udhcp')
-rw-r--r-- | networking/udhcp/dhcpc.c | 2 | ||||
-rw-r--r-- | networking/udhcp/dhcpd.c | 2 | ||||
-rw-r--r-- | networking/udhcp/dumpleases.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/networking/udhcp/dhcpc.c b/networking/udhcp/dhcpc.c index 7fca184ab..576b1cbb8 100644 --- a/networking/udhcp/dhcpc.c +++ b/networking/udhcp/dhcpc.c | |||
@@ -129,7 +129,7 @@ static uint8_t* alloc_dhcp_option(int code, const char *str, int extra) | |||
129 | 129 | ||
130 | 130 | ||
131 | int udhcpc_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; | 131 | int udhcpc_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
132 | int udhcpc_main(int argc, char **argv) | 132 | int udhcpc_main(int argc ATTRIBUTE_UNUSED, char **argv) |
133 | { | 133 | { |
134 | uint8_t *temp, *message; | 134 | uint8_t *temp, *message; |
135 | char *str_c, *str_V, *str_h, *str_F, *str_r, *str_T, *str_A, *str_t; | 135 | char *str_c, *str_V, *str_h, *str_F, *str_r, *str_T, *str_A, *str_t; |
diff --git a/networking/udhcp/dhcpd.c b/networking/udhcp/dhcpd.c index eb7323da7..263719657 100644 --- a/networking/udhcp/dhcpd.c +++ b/networking/udhcp/dhcpd.c | |||
@@ -23,7 +23,7 @@ struct dhcpOfferedAddr *leases; | |||
23 | 23 | ||
24 | 24 | ||
25 | int udhcpd_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; | 25 | int udhcpd_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
26 | int udhcpd_main(int argc, char **argv) | 26 | int udhcpd_main(int argc ATTRIBUTE_UNUSED, char **argv) |
27 | { | 27 | { |
28 | fd_set rfds; | 28 | fd_set rfds; |
29 | struct timeval tv; | 29 | struct timeval tv; |
diff --git a/networking/udhcp/dumpleases.c b/networking/udhcp/dumpleases.c index 218e6bc57..83b384177 100644 --- a/networking/udhcp/dumpleases.c +++ b/networking/udhcp/dumpleases.c | |||
@@ -8,7 +8,7 @@ | |||
8 | #include "dhcpd.h" | 8 | #include "dhcpd.h" |
9 | 9 | ||
10 | int dumpleases_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; | 10 | int dumpleases_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
11 | int dumpleases_main(int argc, char **argv) | 11 | int dumpleases_main(int argc ATTRIBUTE_UNUSED, char **argv) |
12 | { | 12 | { |
13 | int fd; | 13 | int fd; |
14 | int i; | 14 | int i; |