summaryrefslogtreecommitdiff
path: root/log.c
diff options
context:
space:
mode:
authorJ.W. Schultz <jw@samba.org>2003-03-25 02:28:54 +0000
committerJ.W. Schultz <jw@samba.org>2003-03-25 02:28:54 +0000
commit42d4edc06740cab0cc2daec74c23aff3834534dc (patch)
treed47211f82c4cede7e0d244daf833a39330edc6dd /log.c
parentfbc0bc4d53b6cffeaa17d96d18f2e87544cc3156 (diff)
downloadrsync-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.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/log.c b/log.c
index 3ffd3e28..34ff6d3d 100644
--- a/log.c
+++ b/log.c
@@ -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);
-}