aboutsummaryrefslogtreecommitdiffstats
path: root/receiver.c
diff options
context:
space:
mode:
authorWayne Davison <wayned@samba.org>2009-04-12 12:51:20 -0700
committerWayne Davison <wayned@samba.org>2009-04-12 12:51:20 -0700
commitd510e82fc6503bfb56212eda9d9b6d4d1896331a (patch)
treeb274508799e2b48448ffe744bdf854ff5187e2fb /receiver.c
parent4e9c7fae8f6feb2fecaea811b318cf416d23dd9a (diff)
downloadandroid_external_rsync-d510e82fc6503bfb56212eda9d9b6d4d1896331a.tar.gz
android_external_rsync-d510e82fc6503bfb56212eda9d9b6d4d1896331a.tar.bz2
android_external_rsync-d510e82fc6503bfb56212eda9d9b6d4d1896331a.zip
Fixed the use of --xattrs with --only-write-batch.
Diffstat (limited to 'receiver.c')
-rw-r--r--receiver.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/receiver.c b/receiver.c
index 245ba444..d6481eb0 100644
--- a/receiver.c
+++ b/receiver.c
@@ -491,14 +491,14 @@ int recv_files(int f_in, char *local_name)
rprintf(FINFO, "recv_files(%s)\n", fname);
#ifdef SUPPORT_XATTRS
- if (iflags & ITEM_REPORT_XATTR && !dry_run)
+ if (iflags & ITEM_REPORT_XATTR && do_xfers)
recv_xattr_request(file, f_in);
#endif
if (!(iflags & ITEM_TRANSFER)) {
maybe_log_item(file, iflags, itemizing, xname);
#ifdef SUPPORT_XATTRS
- if (preserve_xattrs && iflags & ITEM_REPORT_XATTR && !dry_run)
+ if (preserve_xattrs && iflags & ITEM_REPORT_XATTR && do_xfers)
set_file_attrs(fname, file, NULL, fname, 0);
#endif
if (iflags & ITEM_IS_NEW) {