diff options
| author | Wayne Davison <wayned@samba.org> | 2005-02-07 20:36:43 +0000 |
|---|---|---|
| committer | Wayne Davison <wayned@samba.org> | 2005-02-07 20:36:43 +0000 |
| commit | 4875d6b64dd0ed8d451746cc0cc609cff36192bd (patch) | |
| tree | a67e793c04e5628b8bfbad50864d9b62aab936d8 /cleanup.c | |
| parent | 54b405985632b71444f215bb547a2b6a7f0f3637 (diff) | |
| download | android_external_rsync-4875d6b64dd0ed8d451746cc0cc609cff36192bd.tar.gz android_external_rsync-4875d6b64dd0ed8d451746cc0cc609cff36192bd.tar.bz2 android_external_rsync-4875d6b64dd0ed8d451746cc0cc609cff36192bd.zip | |
Adding more calls to safe_fname().
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, file, line); + code, safe_fname(file), line); } if (cleanup_child_pid != -1) { @@ -147,7 +147,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, file, line, code); + ocode, safe_fname(file), line, code); } close_all(); |
