From: Wayne Davison Date: Tue, 22 Feb 2005 22:12:59 +0000 (+0000) Subject: Always set the SID_USING_ALT_BASIS appropriately for the transfer, X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/352963ddc33a0a56f604395b65222191a38c5c8e Always set the SID_USING_ALT_BASIS appropriately for the transfer, even if --inplace wasn't specified. --- diff --git a/generator.c b/generator.c index 41cdace8..b0913a01 100644 --- a/generator.c +++ b/generator.c @@ -826,7 +826,7 @@ notify_others: int iflags = SID_UPDATING; if (always_checksum) iflags |= SID_REPORT_CHECKSUM; - if (inplace && fnamecmp_type != FNAMECMP_FNAME) + if (fnamecmp_type != FNAMECMP_FNAME) iflags |= SID_USING_ALT_BASIS; itemize(file, statret, &st, iflags, f_out, -1); }