X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/5918daf8a42a80bb9db3c787dffd8dead4bcca9f..18e1289f27838da70e7c93b0db98e41a29f09657:/pipe.c diff --git a/pipe.c b/pipe.c index 01306088..d4bf1134 100644 --- a/pipe.c +++ b/pipe.c @@ -28,7 +28,7 @@ extern int orig_umask; extern int filesfrom_fd; /** - * Create a child connected to use on stdin/stdout. + * Create a child connected to us via its stdin/stdout. * * This is derived from CVS code * @@ -78,8 +78,7 @@ pid_t piped_child(char **command, int *f_in, int *f_out) if (blocking_io > 0) set_blocking(STDOUT_FILENO); execvp(command[0], command); - rsyserr(FERROR, errno, "Failed to exec %s", - safe_fname(command[0])); + rsyserr(FERROR, errno, "Failed to exec %s", command[0]); exit_cleanup(RERR_IPC); }