Commit fbffad67 authored by owsla's avatar owsla

FIFOs don't have extended attributes -- don't try to access them.


git-svn-id: http://svn.savannah.nongnu.org/svn/rdiff-backup@804 2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109
parent 591a1dd0
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)
......
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment