diff options
author | Matt Kraai | 2001-07-19 17:29:38 +0000 |
---|---|---|
committer | Matt Kraai | 2001-07-19 17:29:38 +0000 |
commit | c8eae6684b725f9cb62a05fedbd32d8c349634e1 (patch) | |
tree | 09526c68f18a10ea5d812821abeaea1134067f0c | |
parent | c1cda4a6091902bdb81cb8938838f4b26ddc52cf (diff) | |
download | busybox-c8eae6684b725f9cb62a05fedbd32d8c349634e1.zip busybox-c8eae6684b725f9cb62a05fedbd32d8c349634e1.tar.gz |
The directory name should only be prepended if one was specified.
-rw-r--r-- | networking/wget.c | 5 | ||||
-rw-r--r-- | wget.c | 5 |
2 files changed, 6 insertions, 4 deletions
diff --git a/networking/wget.c b/networking/wget.c index 61945b7..5d94f6e 100644 --- a/networking/wget.c +++ b/networking/wget.c @@ -272,7 +272,8 @@ int wget_main(int argc, char **argv) output = stdout; quiet_flag = TRUE; } else { - fname_out = concat_path_file(dir_prefix, fname_out); + if (dir_prefix != NULL) + fname_out = concat_path_file(dir_prefix, fname_out); output = xfopen(fname_out, (do_continue ? "a" : "w")); } @@ -816,7 +817,7 @@ progressmeter(int flag) * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: wget.c,v 1.42 2001/06/21 19:45:06 andersen Exp $ + * $Id: wget.c,v 1.43 2001/07/19 17:29:38 kraai Exp $ */ @@ -272,7 +272,8 @@ int wget_main(int argc, char **argv) output = stdout; quiet_flag = TRUE; } else { - fname_out = concat_path_file(dir_prefix, fname_out); + if (dir_prefix != NULL) + fname_out = concat_path_file(dir_prefix, fname_out); output = xfopen(fname_out, (do_continue ? "a" : "w")); } @@ -816,7 +817,7 @@ progressmeter(int flag) * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: wget.c,v 1.42 2001/06/21 19:45:06 andersen Exp $ + * $Id: wget.c,v 1.43 2001/07/19 17:29:38 kraai Exp $ */ |