From 238e354b586ca3f7b68e8baeab7444e523493a12 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Mon, 12 Apr 2004 20:57:17 +0000 Subject: [PATCH] Eric Spakman noticed that ifdown' will attempt to run 'ifconfig' even if built with CONFIG_FEATURE_IFUPDOWN_IP when shutting down a dhcp connection. --- networking/ifupdown.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/networking/ifupdown.c b/networking/ifupdown.c index c34e2b9..de65d29 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) -- 2.7.4