summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorowsla <owsla@2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109>2007-06-10 15:30:03 +0000
committerowsla <owsla@2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109>2007-06-10 15:30:03 +0000
commit06515875f281f72a6ab46cfd59675a1b4e63d1b6 (patch)
tree4e9f035fab5862d399fd63ff423aea17622f7206
parent5993508bc9b5167d23a2fe9d748f02318c16f7ea (diff)
downloadrdiff-backup-06515875f281f72a6ab46cfd59675a1b4e63d1b6.tar.gz
FIFOs don't have extended attributes -- don't try to access them.
git-svn-id: http://svn.savannah.nongnu.org/svn/rdiff-backup/trunk@804 2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109
-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