From: Wayne Davison Date: Mon, 18 Feb 2008 07:44:52 +0000 (-0800) Subject: The daemon no longer logs a recv entry for a file that is not X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/1c65a93d03ebbb878107e74035d31a602b1cd582?hp=cae7885e2f5991640bd6a7b117147b2bc0e30bec The daemon no longer logs a recv entry for a file that is not actually being updated due to the --only-write-batch option. --- diff --git a/receiver.c b/receiver.c index 225bab68..5bbecf05 100644 --- a/receiver.c +++ b/receiver.c @@ -502,7 +502,7 @@ int recv_files(int f_in, char *local_name) continue; } if (write_batch < 0) { - log_item(FINFO, file, &stats, iflags, NULL); + log_item(FCLIENT, file, &stats, iflags, NULL); if (!am_server) discard_receive_data(f_in, F_LENGTH(file)); continue;