summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--rdiff-backup/CHANGELOG3
-rw-r--r--rdiff-backup/rdiff_backup/eas_acls.py3
2 files changed, 5 insertions, 1 deletions
diff --git a/rdiff-backup/CHANGELOG b/rdiff-backup/CHANGELOG
index e7fd972..84451e5 100644
--- a/rdiff-backup/CHANGELOG
+++ b/rdiff-backup/CHANGELOG
@@ -1,6 +1,9 @@
New in v1.1.11 (????/??/??)
---------------------------
+FIFOs don't have extended attributes -- don't try to access them.
+(Andrew Ferguson)
+
Fix for bug #19612 -- Incorrect line broke --no-compression option.
(Fix by Thiago in bug comment)
diff --git a/rdiff-backup/rdiff_backup/eas_acls.py b/rdiff-backup/rdiff_backup/eas_acls.py
index ab92405..ed9df1b 100644
--- a/rdiff-backup/rdiff_backup/eas_acls.py
+++ b/rdiff-backup/rdiff_backup/eas_acls.py
@@ -553,7 +553,8 @@ def rpath_ea_get(rp):
"""
ea = ExtendedAttributes(rp.index)
- if not rp.issym() and not rp.issock(): ea.read_from_rp(rp)
+ if not rp.issym() and not rp.issock() and not rp.isfifo():
+ ea.read_from_rp(rp)
return ea
rpath.ea_get = rpath_ea_get