removed log_transfer() It was no more than a conditional
[rsync/rsync.git] / log.c
diff --git a/log.c b/log.c
index 3ffd3e2..34ff6d3 100644 (file)
--- 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);
-}