Change the receive log message from "send" to "recv". Fix from

Rick Smith <rick@rbsmith.com>.
This commit is contained in:
David Dykstra
1999-01-05 20:08:45 +00:00
parent 536541d52b
commit 117af10225

4
log.c
View File

@@ -289,9 +289,9 @@ void log_recv(struct file_struct *file, struct stats *initial_stats)
extern char *log_format;
if (lp_transfer_logging(module_id)) {
log_formatted(FLOG, lp_log_format(module_id), "send", file, initial_stats);
log_formatted(FLOG, lp_log_format(module_id), "recv", file, initial_stats);
} else if (log_format && !am_server) {
log_formatted(FINFO, log_format, "send", file, initial_stats);
log_formatted(FINFO, log_format, "recv", file, initial_stats);
}
}