diff options
author | Wayne Davison <wayned@samba.org> | 2014-06-08 10:21:27 -0700 |
---|---|---|
committer | Wayne Davison <wayned@samba.org> | 2014-06-08 10:21:27 -0700 |
commit | 03bb593f812ac0a1c4a6b38d333e31f149f3a451 (patch) | |
tree | 267fffe2f653b737eb2392e1d2f29872e43534ee | |
parent | 4c8eb5f9511dd1393b147c4e993ee15448faedf5 (diff) | |
download | rsync-03bb593f812ac0a1c4a6b38d333e31f149f3a451.tar.gz rsync-03bb593f812ac0a1c4a6b38d333e31f149f3a451.tar.bz2 rsync-03bb593f812ac0a1c4a6b38d333e31f149f3a451.zip |
I missed this tweak in the undo of a prior xattr optimization.
-rw-r--r-- | sender.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -258,8 +258,7 @@ void send_files(int f_in, int f_out) rprintf(FINFO, "send_files(%d, %s%s%s)\n", ndx, path,slash,fname); #ifdef SUPPORT_XATTRS - if (preserve_xattrs && iflags & ITEM_REPORT_XATTR && do_xfers - && (protocol_version < 31 || !BITS_SET(iflags, ITEM_XNAME_FOLLOWS|ITEM_LOCAL_CHANGE))) + if (preserve_xattrs && iflags & ITEM_REPORT_XATTR && do_xfers) recv_xattr_request(file, f_in); #endif |