From 6df5e682f1e1d921a6306e5ef32e711114b38b1f Mon Sep 17 00:00:00 2001 From: Yegor Gemba Date: Sun, 7 Apr 2024 02:20:10 +0300 Subject: [PATCH] Fix xattr name format on Linux On Linux xattr attribute names must have "namespace.attribute" form --- src/duplicacy_utils_linux.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/duplicacy_utils_linux.go b/src/duplicacy_utils_linux.go index 223f32c5..9047070b 100644 --- a/src/duplicacy_utils_linux.go +++ b/src/duplicacy_utils_linux.go @@ -8,6 +8,6 @@ import ( ) func excludedByAttribute(attirbutes map[string][]byte) bool { - _, ok := attirbutes["duplicacy_exclude"] + _, ok := attirbutes["user.duplicacy_exclude"] return ok }