aboutsummaryrefslogtreecommitdiff
path: root/networking
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2004-07-26 12:22:33 +0000
committerEric Andersen <andersen@codepoet.org>2004-07-26 12:22:33 +0000
commit7f8bcbefc7c9b8c8ea9aee677607160e69723d05 (patch)
tree4b0316a3faf0090ad6ee55e5b941afebcc582621 /networking
parent461cdc89a9d25aa3e1807ebfaafbfb272c56584d (diff)
downloadbusybox-7f8bcbefc7c9b8c8ea9aee677607160e69723d05.tar.gz
add missing ;
Diffstat (limited to 'networking')
-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)
} 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));
}