Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2004-07-26 16:22:33 +0400
committerEric Andersen <andersen@codepoet.org>2004-07-26 16:22:33 +0400
commit7f8bcbefc7c9b8c8ea9aee677607160e69723d05 (patch)
tree4b0316a3faf0090ad6ee55e5b941afebcc582621
parent461cdc89a9d25aa3e1807ebfaafbfb272c56584d (diff)
add missing ;1_00_rc2
-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));
}