diff options
Diffstat (limited to 'networking/udhcp/common.h')
-rw-r--r-- | networking/udhcp/common.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/networking/udhcp/common.h b/networking/udhcp/common.h index e5af62874..48a23792a 100644 --- a/networking/udhcp/common.h +++ b/networking/udhcp/common.h | |||
@@ -321,12 +321,11 @@ void udhcp_dump_packet(struct dhcp_packet *packet) FAST_FUNC; | |||
321 | int FAST_FUNC udhcp_str2nip(const char *str, void *arg); | 321 | int FAST_FUNC udhcp_str2nip(const char *str, void *arg); |
322 | 322 | ||
323 | #if !ENABLE_UDHCPC6 | 323 | #if !ENABLE_UDHCPC6 |
324 | #define udhcp_insert_new_option(opt_list, code, buffer, length, dhcpv6) \ | 324 | #define udhcp_insert_new_option(opt_list, code, length, dhcpv6) \ |
325 | udhcp_insert_new_option(opt_list, code, buffer, length) | 325 | udhcp_insert_new_option(opt_list, code, length) |
326 | #endif | 326 | #endif |
327 | void* FAST_FUNC udhcp_insert_new_option(struct option_set **opt_list, | 327 | void* FAST_FUNC udhcp_insert_new_option(struct option_set **opt_list, |
328 | unsigned code, | 328 | unsigned code, |
329 | const void *buffer, | ||
330 | unsigned length, | 329 | unsigned length, |
331 | bool dhcpv6); | 330 | bool dhcpv6); |
332 | 331 | ||