Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b404d77 + 1f43833 commit 426fc67Copy full SHA for 426fc67
src/llfuse.h
@@ -14,7 +14,7 @@ the terms of the GNU LGPL.
14
15
#ifdef __linux__
16
#define PLATFORM PLATFORM_LINUX
17
-#elif __FreeBSD_kernel__&&__GLIBC__
+#elif __FreeBSD_kernel__ && __GLIBC__
18
19
#elif __FreeBSD__
20
#define PLATFORM PLATFORM_BSD
test/test_api.py
@@ -76,7 +76,7 @@ def test_xattr():
76
llfuse.setxattr(fh.name, key, value)
77
except OSError as exc:
78
if exc.errno == errno.ENOTSUP:
79
- pytest.skip('ACLs not supported for %s' % fh.name)
+ pytest.skip('xattrs not supported for %s' % fh.name)
80
raise
81
assert _getxattr_helper(fh.name, key) == value
82
0 commit comments