commit | ea62077b850076c4d7dc3cf78ebd1888928c6ddf | [log] [tgz] |
---|---|---|
author | Denis Vlasenko <vda.linux@googlemail.com> | Sat Oct 14 02:23:43 2006 +0000 |
committer | Denis Vlasenko <vda.linux@googlemail.com> | Sat Oct 14 02:23:43 2006 +0000 |
tree | 37b7584ae40b99edb5583fbc4392b62ffdadf278 | |
parent | 88ca06769028e442bf873b270c176ca0e9f021f8 [diff] [blame] |
add open_read_close() and similar stuff
diff --git a/networking/ftpgetput.c b/networking/ftpgetput.c index 47126ee..aafeaf6 100644 --- a/networking/ftpgetput.c +++ b/networking/ftpgetput.c
@@ -166,7 +166,7 @@ if (do_continue) { fd_local = xopen(local_path, O_APPEND | O_WRONLY); } else { - fd_local = xopen3(local_path, O_CREAT | O_TRUNC | O_WRONLY, 0777); + fd_local = xopen3(local_path, O_CREAT | O_TRUNC | O_WRONLY, 0666); } }