diff --git a/networking/ifupdown.c b/networking/ifupdown.c index c34e2b955..de65d29f3 100644 --- a/networking/ifupdown.c +++ b/networking/ifupdown.c @@ -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)