Blame SOURCES/rsync-3.1.3-missing-xattr-filter.patch

10c6fc
diff --git a/exclude.c.old b/exclude.c
10c6fc
index 232249f..2f6dccc 100644
10c6fc
--- a/exclude.c.old
10c6fc
+++ b/exclude.c
10c6fc
@@ -1575,6 +1575,8 @@ char *get_rule_prefix(filter_rule *rule, const char *pat, int for_xfer,
10c6fc
 	}
10c6fc
 	if (rule->rflags & FILTRULE_EXCLUDE_SELF)
10c6fc
 		*op++ = 'e';
10c6fc
+	if (rule->rflags & FILTRULE_XATTR)
10c6fc
+		*op++ = 'x';
10c6fc
 	if (rule->rflags & FILTRULE_SENDER_SIDE
10c6fc
 	    && (!for_xfer || protocol_version >= 29))
10c6fc
 		*op++ = 's';