aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorBernd Schubert <bernd@bsbernd.com>2024-12-28 15:10:03 +0100
committerBernd Schubert <bernd@bsbernd.com>2024-12-30 23:04:11 +0100
commit24f5b129c4e1b03ebbd05ac0c7673f306facea1a (patch)
treee16f5b02a829457efab3f98ebbe54271e581a7f6 /test
parent3d90402f9084edb90ddb00d6ccd8c2183e6df140 (diff)
downloadlibfuse-24f5b129c4e1b03ebbd05ac0c7673f306facea1a.tar.gz
Add 64-bit conn::{capable,want}_ext fields
The previous fields are left for ABI compatibility, although it is not beautiful to add that complexity when we have to increase the so-version as we had ABI breakage anyway. example/printcap is simplified to use an array, as every line would have needed to be modified anyway. Missing 'FUSE_CAP_PASSTHROUGH' was added. Signed-off-by: Bernd Schubert <bernd@bsbernd.com>
Diffstat (limited to 'test')
-rw-r--r--test/test_write_cache.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_write_cache.c b/test/test_write_cache.c
index cc827c7..d3c7af0 100644
--- a/test/test_write_cache.c
+++ b/test/test_write_cache.c
@@ -65,7 +65,7 @@ static void tfs_init (void *userdata, struct fuse_conn_info *conn)
(void) userdata;
if(options.writeback) {
- assert(conn->capable & FUSE_CAP_WRITEBACK_CACHE);
+ assert(fuse_get_feature_flag(conn, FUSE_CAP_WRITEBACK_CACHE));
conn->want |= FUSE_CAP_WRITEBACK_CACHE;
}
}