mirror of
https://github.com/borgbackup/borg.git
synced 2026-06-11 01:41:57 -04:00
PR #235 - Merge branch 'fix_xattr' into merge
This commit is contained in:
commit
fd16debb05
1 changed files with 5 additions and 2 deletions
|
|
@ -9,9 +9,12 @@ elif platform == 'FreeBSD':
|
|||
elif platform == 'Darwin':
|
||||
from attic.platform_darwin import acl_get, acl_set, API_VERSION
|
||||
else:
|
||||
API_VERSION = 1
|
||||
# this is a dummy acl interface for platforms for which we do not have
|
||||
# a real implementation (or which do not support acls at all).
|
||||
|
||||
def acl_get(path, item, numeric_owner=False):
|
||||
API_VERSION = 2
|
||||
|
||||
def acl_get(path, item, st, numeric_owner=False):
|
||||
pass
|
||||
|
||||
def acl_set(path, item, numeric_owner=False):
|
||||
|
|
|
|||
Loading…
Reference in a new issue