From 6716d815f2ca58d5cbccae7aefbc439048561a51 Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Sun, 4 Jan 2026 04:43:05 +0100 Subject: [PATCH 1/2] test_api: fix wrong skip message --- test/test_api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_api.py b/test/test_api.py index 733111b..8ff84d4 100755 --- a/test/test_api.py +++ b/test/test_api.py @@ -76,7 +76,7 @@ def test_xattr(): llfuse.setxattr(fh.name, key, value) except OSError as exc: if exc.errno == errno.ENOTSUP: - pytest.skip('ACLs not supported for %s' % fh.name) + pytest.skip('xattrs not supported for %s' % fh.name) raise assert _getxattr_helper(fh.name, key) == value From 1f43833a33c75fe5e1054cdaa8c31c78e744d617 Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Sun, 4 Jan 2026 04:45:12 +0100 Subject: [PATCH 2/2] cosmetic: fix spacing in llfuse.h --- src/llfuse.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/llfuse.h b/src/llfuse.h index 6e0b5e0..c6c2061 100644 --- a/src/llfuse.h +++ b/src/llfuse.h @@ -14,7 +14,7 @@ the terms of the GNU LGPL. #ifdef __linux__ #define PLATFORM PLATFORM_LINUX -#elif __FreeBSD_kernel__&&__GLIBC__ +#elif __FreeBSD_kernel__ && __GLIBC__ #define PLATFORM PLATFORM_LINUX #elif __FreeBSD__ #define PLATFORM PLATFORM_BSD