From cf749bc10c9e7b38217e102d0d3e7044e5515b4f Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Sun, 26 Nov 2006 15:45:17 +0000 Subject: small fixes: fix xstrdup to not grossly overallocate memory use xopen instean of xopen3 in several places etc. --- networking/ftpgetput.c | 2 +- networking/wget.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'networking') diff --git a/networking/ftpgetput.c b/networking/ftpgetput.c index a842401c0..fa1854903 100644 --- a/networking/ftpgetput.c +++ b/networking/ftpgetput.c @@ -166,7 +166,7 @@ int ftp_receive(ftp_host_info_t *server, FILE *control_stream, if (do_continue) { fd_local = xopen(local_path, O_APPEND | O_WRONLY); } else { - fd_local = xopen3(local_path, O_CREAT | O_TRUNC | O_WRONLY, 0666); + fd_local = xopen(local_path, O_CREAT | O_TRUNC | O_WRONLY); } } diff --git a/networking/wget.c b/networking/wget.c index 5a547ce1f..1e51ce96b 100644 --- a/networking/wget.c +++ b/networking/wget.c @@ -452,8 +452,8 @@ int wget_main(int argc, char **argv) /* Do it before progressmeter (want to have nice error message) */ if (output_fd < 0) - output_fd = xopen3(fname_out, - O_WRONLY|O_CREAT|O_EXCL|O_TRUNC, 0666); + output_fd = xopen(fname_out, + O_WRONLY|O_CREAT|O_EXCL|O_TRUNC); if (!(opt & WGET_OPT_QUIET)) progressmeter(-1); -- cgit v1.2.3