diff options
author | Denis Vlasenko | 2008-09-26 16:29:12 +0000 |
---|---|---|
committer | Denis Vlasenko | 2008-09-26 16:29:12 +0000 |
commit | c321b51dc61f975625a0bfc67cf159f159ee2612 (patch) | |
tree | 3a857514e6779c4c00bf157ff29cfa24d5828e1a /networking/udhcp/dhcpc.h | |
parent | 1a89133caf043d553d866cd6e707e687e914a013 (diff) | |
download | busybox-c321b51dc61f975625a0bfc67cf159f159ee2612.zip busybox-c321b51dc61f975625a0bfc67cf159f159ee2612.tar.gz |
udhcp: added some FIXMEs; code shrink. -49 bytes
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 6ca4400..a934849 100644 --- a/networking/udhcp/dhcpc.h +++ b/networking/udhcp/dhcpc.h @@ -39,7 +39,7 @@ struct client_config_t { uint32_t random_xid(void) FAST_FUNC; int send_discover(uint32_t xid, uint32_t requested) FAST_FUNC; -int send_selecting(uint32_t xid, uint32_t server, uint32_t requested) FAST_FUNC; +int send_select(uint32_t xid, uint32_t server, uint32_t requested) FAST_FUNC; #if ENABLE_FEATURE_UDHCPC_ARPING int send_decline(uint32_t xid, uint32_t server, uint32_t requested) FAST_FUNC; #endif |