1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2024-12-25 09:19:31 +00:00

add ACL keys the RobustUnpacker must know about

This commit is contained in:
Thomas Waldmann 2015-11-07 19:55:17 +01:00
parent 3d2a1da983
commit 244303ac66

View file

@ -595,7 +595,7 @@ def open_noatime_with_fallback(p, s):
# this set must be kept complete, otherwise the RobustUnpacker might malfunction:
ITEM_KEYS = set([b'path', b'source', b'rdev', b'chunks',
b'mode', b'user', b'group', b'uid', b'gid', b'mtime', b'atime', b'ctime',
b'xattrs', b'bsdflags',
b'xattrs', b'bsdflags', b'acl_nfs4', b'acl_access', b'acl_default', b'acl_extended',
])