diff options
author | Wayne Davison <wayned@samba.org> | 2006-01-31 02:30:05 +0000 |
---|---|---|
committer | Wayne Davison <wayned@samba.org> | 2006-01-31 02:30:05 +0000 |
commit | 860dcf68ad6270ed3d0b9b56bc2cb4a203b28dee (patch) | |
tree | c73ed921a716c85f1d0c49e4f531d5a4ba580ec1 | |
parent | 812848323b75b1adc76e35753bb328032b3110e3 (diff) | |
download | rsync-860dcf68ad6270ed3d0b9b56bc2cb4a203b28dee.tar.gz rsync-860dcf68ad6270ed3d0b9b56bc2cb4a203b28dee.tar.bz2 rsync-860dcf68ad6270ed3d0b9b56bc2cb4a203b28dee.zip |
Got rid of the orig_umask-based file->mode tweak in receive_file()
(which got moved into the dest_mode() function).
-rw-r--r-- | flist.c | 7 |
1 files changed, 0 insertions, 7 deletions
@@ -58,7 +58,6 @@ extern int copy_links; extern int copy_unsafe_links; extern int protocol_version; extern int sanitize_paths; -extern int orig_umask; extern const char *io_write_phase; extern struct stats stats; extern struct file_list *the_file_list; @@ -714,12 +713,6 @@ static struct file_struct *receive_file_entry(struct file_list *flist, read_buf(f, sum, checksum_len); } - if (!preserve_perms) { - /* set an appropriate set of permissions based on original - * permissions and umask. This emulates what GNU cp does */ - file->mode &= ~orig_umask; - } - return file; } |