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-Tag: v3.0.0pre10~12 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1c65a93d03ebbb878107e74035d31a602b1cd582;p=thirdparty%2Frsync.git 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;