mirror of
https://github.com/borgbackup/borg.git
synced 2026-06-11 09:59:19 -04:00
Merge pull request #1277 from ThomasWaldmann/fuse-xattr-errcode
fuse: getxattr fail must use errno.ENOATTR, fixes #1126
This commit is contained in:
commit
694db399c8
1 changed files with 1 additions and 1 deletions
|
|
@ -194,7 +194,7 @@ class FuseOperations(llfuse.Operations):
|
|||
try:
|
||||
return item.get(b'xattrs', {})[name]
|
||||
except KeyError:
|
||||
raise llfuse.FUSEError(errno.ENODATA) from None
|
||||
raise llfuse.FUSEError(errno.ENOATTR) from None
|
||||
|
||||
def _load_pending_archive(self, inode):
|
||||
# Check if this is an archive we need to load
|
||||
|
|
|
|||
Loading…
Reference in a new issue