From: Eric Andersen Date: Mon, 26 Jul 2004 12:22:33 +0000 (-0000) Subject: add missing ; X-Git-Tag: 1_00_rc2^0 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=7f8bcbefc7c9b8c8ea9aee677607160e69723d05;p=oweals%2Fbusybox.git add missing ; --- diff --git a/networking/ifupdown.c b/networking/ifupdown.c index ff6e58acd..95d78ea46 100644 --- a/networking/ifupdown.c +++ b/networking/ifupdown.c @@ -573,7 +573,7 @@ static int dhcp_down(struct interface_defn_t *ifd, execfn *exec) } else if (execable("/sbin/dhcpcd")) { result = execute("dhcpcd -k %iface%", ifd, exec); } - static_down(ifd, exec) + static_down(ifd, exec); return (result || bootp_down(ifd, exec)); }