From: Wayne Davison Date: Tue, 22 Feb 2005 22:13:04 +0000 (+0000) Subject: Fixed a problem with the last change. X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/cfb691ac9aaa57b793cf534383b78c068a6c410d Fixed a problem with the last change. --- diff --git a/sender.c b/sender.c index e771a9e7..ca6ae1e3 100644 --- a/sender.c +++ b/sender.c @@ -204,7 +204,7 @@ void send_files(struct file_list *flist, int f_out, int f_in) iflags = ITEM_UPDATING | ITEM_MISSING_DATA; if (inplace && protocol_version >= 29) { - updating_basis_file = iflags & ITEM_USING_ALT_BASIS; + updating_basis_file = !(iflags & ITEM_USING_ALT_BASIS); } else updating_basis_file = inplace && !make_backups;