diff options
author | Denis Vlasenko | 2008-01-25 19:27:08 +0000 |
---|---|---|
committer | Denis Vlasenko | 2008-01-25 19:27:08 +0000 |
commit | ca9635b19dc66f37c322a61d8fcba5c753a526af (patch) | |
tree | 19a5362ce20288bb6f7778cfadd7c263c8136aa7 /networking/udhcp/dhcpc.h | |
parent | a5549c961739fb0d354f3c41cb5fb0d64c8da4ec (diff) | |
download | busybox-ca9635b19dc66f37c322a61d8fcba5c753a526af.zip busybox-ca9635b19dc66f37c322a61d8fcba5c753a526af.tar.gz |
udhcpc: fix wrong options in decline and release packets
(Jonas Danielsson <jonas.danielsson at axis.com>)
Diffstat (limited to 'networking/udhcp/dhcpc.h')
-rw-r--r-- | networking/udhcp/dhcpc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/udhcp/dhcpc.h b/networking/udhcp/dhcpc.h index e818896..bc05754 100644 --- a/networking/udhcp/dhcpc.h +++ b/networking/udhcp/dhcpc.h @@ -42,7 +42,7 @@ uint32_t random_xid(void); int send_discover(uint32_t xid, uint32_t requested); int send_selecting(uint32_t xid, uint32_t server, uint32_t requested); #if ENABLE_FEATURE_UDHCPC_ARPING -int send_decline(uint32_t xid, uint32_t server); +int send_decline(uint32_t xid, uint32_t server, uint32_t requested); #endif int send_renew(uint32_t xid, uint32_t server, uint32_t ciaddr); int send_renew(uint32_t xid, uint32_t server, uint32_t ciaddr); |