From: Glenn L McGrath Date: Tue, 19 Nov 2002 09:23:13 +0000 (-0000) Subject: dont use the -i option of xargs X-Git-Tag: 1_00_pre1~436 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=83bcba26c01d945d1964d6d5de715a2356a858cf;p=oweals%2Fbusybox.git dont use the -i option of xargs --- diff --git a/networking/ifupdown.c b/networking/ifupdown.c index 03eb0a5a7..b0f526770 100644 --- a/networking/ifupdown.c +++ b/networking/ifupdown.c @@ -460,7 +460,7 @@ static int dhcp_up(interface_defn *ifd, execfn *exec) static int dhcp_down(interface_defn *ifd, execfn *exec) { if (execable("/sbin/dhclient")) { - if (!execute("cat /var/run/dhclient.%iface%.pid | xargs -i kill -TERM {}", ifd, exec)) { + if (!execute("cat /var/run/dhclient.%iface%.pid | xargs kill", ifd, exec)) { return(0); } } else if (execable("/sbin/pump")) { @@ -468,7 +468,7 @@ static int dhcp_down(interface_defn *ifd, execfn *exec) return(0); } } else if (execable("/sbin/udhcpc")) { - if (!execute("cat /var/run/udhcpc.%iface%.pid | xargs -i kill -TERM {}", ifd, exec)) { + if (!execute("cat /var/run/udhcpc.%iface%.pid | xargs kill", ifd, exec)) { return(0); } } else if (execable("/sbin/dhcpcd")) {