From 117af10225d7efd286ffd77ff550644985ce0918 Mon Sep 17 00:00:00 2001 From: David Dykstra Date: Tue, 5 Jan 1999 20:08:45 +0000 Subject: [PATCH] Change the receive log message from "send" to "recv". Fix from Rick Smith . --- log.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/log.c b/log.c index 86da03a7..3643df7e 100644 --- a/log.c +++ b/log.c @@ -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); } } -- 2.34.1