From: Wayne Davison Date: Sat, 19 Feb 2005 22:57:08 +0000 (+0000) Subject: Changed a couple log_recv() calls back to log_send(). X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/9118a09c770b6ae6f136395c087e76e3768167a8 Changed a couple log_recv() calls back to log_send(). --- 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