From cac75c0f2397f760d4d346219b2b9249b45872f1 Mon Sep 17 00:00:00 2001 From: Sascha Hauer Date: Sun, 29 Apr 2012 13:56:27 +0200 Subject: [PATCH] dhcp: set start time The dhcp command starts with an unitialized start time. The start time is often long in the past which results in an immediate timeout and resend of the dhcp packet. Fix this by initializing the start time correctly. Signed-off-by: Sascha Hauer --- net/dhcp.c | 1 + 1 file changed, 1 insertion(+) diff --git a/net/dhcp.c b/net/dhcp.c index 0c882fb04..bd3ac1a29 100644 --- a/net/dhcp.c +++ b/net/dhcp.c @@ -651,6 +651,7 @@ static int do_dhcp(int argc, char *argv[]) net_set_ip(0); + dhcp_start = get_time_ns(); ret = bootp_request(); /* Basically same as BOOTP */ if (ret) goto out1;