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:
Eric Andersen 2004-04-12 20:57:17 +00:00
parent 87812dc3b0
commit 238e354b58

View File

@ -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)