diff options
author | Glenn L McGrath | 2002-11-19 09:58:56 +0000 |
---|---|---|
committer | Glenn L McGrath | 2002-11-19 09:58:56 +0000 |
commit | d1431073d100bc0dbeafaacc161f11f21551eae6 (patch) | |
tree | 5f387811da28a0e5dc65024e8087655a5547d389 /networking/ifupdown.c | |
parent | 83bcba26c01d945d1964d6d5de715a2356a858cf (diff) | |
download | busybox-d1431073d100bc0dbeafaacc161f11f21551eae6.zip busybox-d1431073d100bc0dbeafaacc161f11f21551eae6.tar.gz |
Dont use xargs
Diffstat (limited to 'networking/ifupdown.c')
-rw-r--r-- | networking/ifupdown.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/networking/ifupdown.c b/networking/ifupdown.c index b0f5267..e4bfc3e 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 kill", ifd, exec)) { + if (!execute("kill -9 `cat /var/run/udhcpc.%iface%.pid`", 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 kill", ifd, exec)) { + if (!execute("kill -9 `cat /var/run/udhcpc.%iface%.pid`", ifd, exec)) { return(0); } } else if (execable("/sbin/dhcpcd")) { |