From 244303ac668471ebb638f7278645a381267d239e Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Sat, 7 Nov 2015 19:55:17 +0100 Subject: [PATCH] add ACL keys the RobustUnpacker must know about --- borg/archive.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/borg/archive.py b/borg/archive.py index e9a9a7d90..524c2a5a1 100644 --- a/borg/archive.py +++ b/borg/archive.py @@ -595,7 +595,7 @@ Number of files: {0.stats.nfiles}'''.format(self) # 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', ])