diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2009-07-19 04:35:16 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2009-07-19 04:35:16 +0200 |
commit | 4abfc2642dcff669798364835f53c804b3d7bcef (patch) | |
tree | 153f2b71681f85519f55c176d37ccd42adacb35c /networking | |
parent | 753a3ce73ea861cd6933d9d4888db63a10b7d1d5 (diff) | |
download | busybox-4abfc2642dcff669798364835f53c804b3d7bcef.tar.gz |
udhcpc: small simplification
function old new delta
udhcpc_main 2401 2398 -3
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking')
-rw-r--r-- | networking/udhcp/dhcpc.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/networking/udhcp/dhcpc.c b/networking/udhcp/dhcpc.c index 636061818..fbb645749 100644 --- a/networking/udhcp/dhcpc.c +++ b/networking/udhcp/dhcpc.c @@ -628,10 +628,7 @@ int udhcpc_main(int argc UNUSED_PARAM, char **argv) inet_ntoa(temp_addr), (unsigned)lease_seconds); } requested_ip = packet.yiaddr; - udhcp_run_script(&packet, - ((state >= RENEWING && state <= RENEW_REQUESTED) - ? "renew" : "bound") - ); + udhcp_run_script(&packet, state == REQUESTING ? "bound" : "renew"); state = BOUND; change_listen_mode(LISTEN_NONE); |