aboutsummaryrefslogtreecommitdiff
path: root/networking/wget.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2006-11-26 15:45:17 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2006-11-26 15:45:17 +0000
commitcf749bc10c9e7b38217e102d0d3e7044e5515b4f (patch)
treeaf6c1681e91a3e5c13bf3dce8aa798c07462468a /networking/wget.c
parentc1660fea6da93f4f8aacf0a9a65c2880ac58209a (diff)
downloadbusybox-w32-cf749bc10c9e7b38217e102d0d3e7044e5515b4f.tar.gz
busybox-w32-cf749bc10c9e7b38217e102d0d3e7044e5515b4f.tar.bz2
busybox-w32-cf749bc10c9e7b38217e102d0d3e7044e5515b4f.zip
small fixes:
fix xstrdup to not grossly overallocate memory use xopen instean of xopen3 in several places etc.
Diffstat (limited to 'networking/wget.c')
-rw-r--r--networking/wget.c4
1 files changed, 2 insertions, 2 deletions
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)
452 452
453 /* Do it before progressmeter (want to have nice error message) */ 453 /* Do it before progressmeter (want to have nice error message) */
454 if (output_fd < 0) 454 if (output_fd < 0)
455 output_fd = xopen3(fname_out, 455 output_fd = xopen(fname_out,
456 O_WRONLY|O_CREAT|O_EXCL|O_TRUNC, 0666); 456 O_WRONLY|O_CREAT|O_EXCL|O_TRUNC);
457 457
458 if (!(opt & WGET_OPT_QUIET)) 458 if (!(opt & WGET_OPT_QUIET))
459 progressmeter(-1); 459 progressmeter(-1);