diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-11-26 15:45:17 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-11-26 15:45:17 +0000 |
commit | cf749bc10c9e7b38217e102d0d3e7044e5515b4f (patch) | |
tree | af6c1681e91a3e5c13bf3dce8aa798c07462468a /networking/ftpgetput.c | |
parent | c1660fea6da93f4f8aacf0a9a65c2880ac58209a (diff) | |
download | busybox-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/ftpgetput.c')
-rw-r--r-- | networking/ftpgetput.c | 2 |
1 files changed, 1 insertions, 1 deletions
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, | |||
166 | if (do_continue) { | 166 | if (do_continue) { |
167 | fd_local = xopen(local_path, O_APPEND | O_WRONLY); | 167 | fd_local = xopen(local_path, O_APPEND | O_WRONLY); |
168 | } else { | 168 | } else { |
169 | fd_local = xopen3(local_path, O_CREAT | O_TRUNC | O_WRONLY, 0666); | 169 | fd_local = xopen(local_path, O_CREAT | O_TRUNC | O_WRONLY); |
170 | } | 170 | } |
171 | } | 171 | } |
172 | 172 | ||