diff options
author | Eric Andersen <andersen@codepoet.org> | 2004-07-26 12:22:33 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2004-07-26 12:22:33 +0000 |
commit | 7f8bcbefc7c9b8c8ea9aee677607160e69723d05 (patch) | |
tree | 4b0316a3faf0090ad6ee55e5b941afebcc582621 /networking | |
parent | 461cdc89a9d25aa3e1807ebfaafbfb272c56584d (diff) | |
download | busybox-7f8bcbefc7c9b8c8ea9aee677607160e69723d05.tar.gz |
add missing ;
Diffstat (limited to 'networking')
-rw-r--r-- | networking/ifupdown.c | 2 |
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)); } |