Eric Spakman noticed that ifdown' will attempt to run 'ifconfig'
even if built with CONFIG_FEATURE_IFUPDOWN_IP when shutting down a dhcp connection.
This commit is contained in:
parent
87812dc3b0
commit
238e354b58
@ -557,7 +557,7 @@ static int dhcp_down(struct interface_defn_t *ifd, execfn *exec)
|
||||
} else if (execable("/sbin/dhcpcd")) {
|
||||
result = execute("dhcpcd -k %iface%", ifd, exec);
|
||||
}
|
||||
return (result || execute("ifconfig %iface% down", ifd, exec));
|
||||
return (result || bootp_down(ifd, exec));
|
||||
}
|
||||
|
||||
static int bootp_up(struct interface_defn_t *ifd, execfn *exec)
|
||||
|
Loading…
Reference in New Issue
Block a user