X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/58a79f4b44593996e53a9bfc94b56006ea86c2ec..9a54a640f74dcaeb03ef99799a5320b3eb77f7ec:/pipe.c diff --git a/pipe.c b/pipe.c index a33117c4..236cc616 100644 --- a/pipe.c +++ b/pipe.c @@ -27,7 +27,6 @@ extern int am_server; extern int blocking_io; extern int filesfrom_fd; extern int munge_symlinks; -extern mode_t orig_umask; extern char *logfile_name; extern int remote_option_cnt; extern const char **remote_options; @@ -78,7 +77,6 @@ pid_t piped_child(char **command, int *f_in, int *f_out) close(to_child_pipe[0]); if (from_child_pipe[1] != STDOUT_FILENO) close(from_child_pipe[1]); - umask(orig_umask); set_blocking(STDIN_FILENO); if (blocking_io > 0) set_blocking(STDOUT_FILENO);