aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2004-07-26 12:22:33 +0000
committerandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2004-07-26 12:22:33 +0000
commit39cf2f97ba27aee013d8be78f94db2909d2ae65e (patch)
tree4b0316a3faf0090ad6ee55e5b941afebcc582621
parent5b9694e94ea91f4ad18387f8ccceb0f50f6c1a02 (diff)
downloadbusybox-w32-39cf2f97ba27aee013d8be78f94db2909d2ae65e.tar.gz
busybox-w32-39cf2f97ba27aee013d8be78f94db2909d2ae65e.tar.bz2
busybox-w32-39cf2f97ba27aee013d8be78f94db2909d2ae65e.zip
add missing ;
git-svn-id: svn://busybox.net/trunk/busybox@9026 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r--networking/ifupdown.c2
1 files changed, 1 insertions, 1 deletions
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)
573 } else if (execable("/sbin/dhcpcd")) { 573 } else if (execable("/sbin/dhcpcd")) {
574 result = execute("dhcpcd -k %iface%", ifd, exec); 574 result = execute("dhcpcd -k %iface%", ifd, exec);
575 } 575 }
576 static_down(ifd, exec) 576 static_down(ifd, exec);
577 return (result || bootp_down(ifd, exec)); 577 return (result || bootp_down(ifd, exec));
578} 578}
579 579