aboutsummaryrefslogtreecommitdiffstats
path: root/pipe.c
diff options
context:
space:
mode:
authorWayne Davison <wayned@samba.org>2006-01-13 21:17:09 +0000
committerWayne Davison <wayned@samba.org>2006-01-13 21:17:09 +0000
commit45c49b52a488882bbbd5366420389abbbeede7c9 (patch)
treefe86f6a50bb45f0a4eeeb71a9c8f02d0f487b592 /pipe.c
parent0ee32c62d3ba303f30007c8d53f327a8d98bfdf9 (diff)
downloadandroid_external_rsync-45c49b52a488882bbbd5366420389abbbeede7c9.tar.gz
android_external_rsync-45c49b52a488882bbbd5366420389abbbeede7c9.tar.bz2
android_external_rsync-45c49b52a488882bbbd5366420389abbbeede7c9.zip
Got rid of calls to (the soon to vanish) safe_fname() function.
Diffstat (limited to 'pipe.c')
-rw-r--r--pipe.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/pipe.c b/pipe.c
index a0704bc7..d4bf1134 100644
--- a/pipe.c
+++ b/pipe.c
@@ -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);
}