From 96b7b48efa86bf3fa164d85532dc8bf520d80531 Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Mon, 28 Mar 2005 17:29:27 +0000 Subject: [PATCH] Some temporary code for 2.6.4pre3 compatibility (which can be safely removed for the next release). --- sender.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sender.c b/sender.c index 3afc48dc..f54542b5 100644 --- a/sender.c +++ b/sender.c @@ -173,6 +173,10 @@ int read_item_attrs(int f_in, int f_out, int ndx, uchar *type_ptr, } *len_ptr = len; + /* Temporary handling of 2.6.4pre3 */ + if (iflags & ITEM_DUMMY_BIT && iflags & (ITEM_LOCAL_CHANGE|ITEM_TRANSFER)) + iflags &= ~ITEM_DUMMY_BIT; + if (iflags & ITEM_TRANSFER) { if (!S_ISREG(the_file_list->files[ndx]->mode)) { rprintf(FERROR, -- 2.34.1