From: Roy Marples Date: Fri, 20 Feb 2009 07:29:13 +0000 (+0000) Subject: We should expire instead of stop as we will start again. X-Git-Tag: v5.0.0~70 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=62b44b40217d4e6b7e8b2b555b1e284713de2dd0;p=thirdparty%2Fdhcpcd.git We should expire instead of stop as we will start again. --- diff --git a/dhcpcd.c b/dhcpcd.c index 417146b1..58b05061 100644 --- a/dhcpcd.c +++ b/dhcpcd.c @@ -318,7 +318,7 @@ send_message(struct interface *iface, int type, * Or we could be configured not to look at them or it's a * buggy driver. Either way, we need to drop everything * and start over. */ - drop_config(iface, "STOP"); + drop_config(iface, "EXPIRE"); close_sockets(iface); delete_timeout(NULL, iface); add_timeout_sec(DHCP_ARP_FAIL, start_interface, iface);