Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 426fc67

Browse files
Merge pull request #109 from ThomasWaldmann/misc-fixes
Misc fixes
2 parents b404d77 + 1f43833 commit 426fc67

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/llfuse.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ the terms of the GNU LGPL.
1414

1515
#ifdef __linux__
1616
#define PLATFORM PLATFORM_LINUX
17-
#elif __FreeBSD_kernel__&&__GLIBC__
17+
#elif __FreeBSD_kernel__ && __GLIBC__
1818
#define PLATFORM PLATFORM_LINUX
1919
#elif __FreeBSD__
2020
#define PLATFORM PLATFORM_BSD

test/test_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ def test_xattr():
7676
llfuse.setxattr(fh.name, key, value)
7777
except OSError as exc:
7878
if exc.errno == errno.ENOTSUP:
79-
pytest.skip('ACLs not supported for %s' % fh.name)
79+
pytest.skip('xattrs not supported for %s' % fh.name)
8080
raise
8181
assert _getxattr_helper(fh.name, key) == value
8282

0 commit comments

Comments
 (0)