Fix xattr on OS X

This commit is contained in:
Jonas Borgström 2013-07-28 13:38:41 +02:00
parent 2281af5284
commit f049b3d4c7
1 changed files with 0 additions and 3 deletions

View File

@ -138,13 +138,10 @@ except ImportError:
flags = 0
if isinstance(path, str):
path = os.fsencode(path)
func = libc.fgetxattr
if isinstance(path, int):
func = libc.fgetxattr
elif not follow_symlinks:
flags = XATTR_NOFOLLOW
else:
func = libc.lgetxattr
n = _check(func(path, name, None, 0, 0, flags))
if n == 0:
return