diff options
author | J.W. Schultz <jw@samba.org> | 2003-03-25 02:28:54 +0000 |
---|---|---|
committer | J.W. Schultz <jw@samba.org> | 2003-03-25 02:28:54 +0000 |
commit | 42d4edc06740cab0cc2daec74c23aff3834534dc (patch) | |
tree | d47211f82c4cede7e0d244daf833a39330edc6dd /log.c | |
parent | fbc0bc4d53b6cffeaa17d96d18f2e87544cc3156 (diff) | |
download | rsync-42d4edc06740cab0cc2daec74c23aff3834534dc.tar.gz |
removed log_transfer() It was no more than a conditional
rprintf() with an unused param.
Diffstat (limited to 'log.c')
-rw-r--r-- | log.c | 14 |
1 files changed, 0 insertions, 14 deletions
@@ -572,17 +572,3 @@ void log_exit(int code, const char *file, int line) name, code, file, line); } } - -/* - * Log the incoming transfer of a file for interactive use, - * this will be called at the end where the client was run. - * Called when a file starts to be transferred. - */ -void log_transfer(struct file_struct *file, const char *fname) -{ - extern int verbose; - - if (!verbose) return; - - rprintf(FINFO, "%s\n", fname); -} |