diff options
author | Wayne Davison <wayned@samba.org> | 2006-01-13 21:17:09 +0000 |
---|---|---|
committer | Wayne Davison <wayned@samba.org> | 2006-01-13 21:17:09 +0000 |
commit | 45c49b52a488882bbbd5366420389abbbeede7c9 (patch) | |
tree | fe86f6a50bb45f0a4eeeb71a9c8f02d0f487b592 /cleanup.c | |
parent | 0ee32c62d3ba303f30007c8d53f327a8d98bfdf9 (diff) | |
download | rsync-45c49b52a488882bbbd5366420389abbbeede7c9.tar.gz rsync-45c49b52a488882bbbd5366420389abbbeede7c9.tar.bz2 rsync-45c49b52a488882bbbd5366420389abbbeede7c9.zip |
Got rid of calls to (the soon to vanish) safe_fname() function.
Diffstat (limited to 'cleanup.c')
-rw-r--r-- | cleanup.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -99,7 +99,7 @@ void _exit_cleanup(int code, const char *file, int line) if (verbose > 3) { rprintf(FINFO,"_exit_cleanup(code=%d, file=%s, line=%d): entered\n", - code, safe_fname(file), line); + code, file, line); } if (cleanup_child_pid != -1) { @@ -149,7 +149,7 @@ void _exit_cleanup(int code, const char *file, int line) if (verbose > 2) { rprintf(FINFO,"_exit_cleanup(code=%d, file=%s, line=%d): about to call exit(%d)\n", - ocode, safe_fname(file), line, code); + ocode, file, line, code); } close_all(); |