Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Maggard <jmaggard10@gmail.com>2009-08-13 03:26:17 +0400
committerDenys Vlasenko <vda.linux@googlemail.com>2009-08-13 03:26:17 +0400
commitaa369e0f0d37ba915616d77154ca8e99fb4d71b5 (patch)
treea7689dd188a221219c53e633faefaaaffd5d3158
parent4803db53b874aa5182944927c10d632333ad4f0e (diff)
udhcpc: if got IP successfully, disable -n for future renewals
Signed-off-by: Justin Maggard <jmaggard10@gmail.com> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r--networking/udhcp/dhcpc.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/networking/udhcp/dhcpc.c b/networking/udhcp/dhcpc.c
index fbb645749..ccc0393f2 100644
--- a/networking/udhcp/dhcpc.c
+++ b/networking/udhcp/dhcpc.c
@@ -637,6 +637,8 @@ int udhcpc_main(int argc UNUSED_PARAM, char **argv)
perform_release(requested_ip, server_addr);
goto ret0;
}
+ /* future renew failures should not exit (JM) */
+ opt &= ~OPT_n;
#if BB_MMU /* NOMMU case backgrounded earlier */
if (!(opt & OPT_f)) {
client_background();