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 | |
parent | 461cdc89a9d25aa3e1807ebfaafbfb272c56584d (diff) | |
download | busybox-w32-1_00_rc2.tar.gz busybox-w32-1_00_rc2.tar.bz2 busybox-w32-1_00_rc2.zip |
add missing ;1_00_rc2
-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) | |||
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 | ||