From 9118a09c770b6ae6f136395c087e76e3768167a8 Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Sat, 19 Feb 2005 22:57:08 +0000 Subject: [PATCH] Changed a couple log_recv() calls back to log_send(). --- sender.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sender.c b/sender.c index 368b7789..e568368e 100644 --- a/sender.c +++ b/sender.c @@ -166,11 +166,11 @@ void send_files(struct file_list *flist, int f_out, int f_in) write_shortint(f_out, iflags); if (am_server) { if (am_daemon && !dry_run && see_item) - log_recv(file, &stats, iflags); + log_send(file, &stats, iflags); } else if (see_item || iflags & ITEM_UPDATING || (S_ISDIR(file->mode) && iflags & ITEM_REPORT_TIME)) - log_recv(file, &stats, iflags); + log_send(file, &stats, iflags); continue; } } else -- 2.34.1