Fix libfuse build with FUSE_USE_VERSION 30
authorAmir Goldstein <amir73il@gmail.com>
Wed, 1 Jan 2025 17:16:43 +0000 (18:16 +0100)
committerBernd Schubert <bernd@bsbernd.com>
Mon, 10 Feb 2025 15:56:45 +0000 (16:56 +0100)
Signed-off-by: Amir Goldstein <amir73il@gmail.com>
include/fuse.h
test/test_setattr.c
test/test_write_cache.c

index 2fc1b6fa9857d6de0354b0e7434e3d735f962c82..dbfa439d98c6628e90aed962b4d26e0c5ee29ab2 100644 (file)
@@ -1013,7 +1013,9 @@ struct fuse *_fuse_new(struct fuse_args *args,
 #if FUSE_USE_VERSION == 30
 struct fuse *_fuse_new_30(struct fuse_args *args,
                         const struct fuse_operations *op,
-                        size_t op_size, void *user_data);
+                        size_t op_size,
+                        struct libfuse_version *version,
+                        void *user_data);
 static inline struct fuse *
 fuse_new(struct fuse_args *args,
         const struct fuse_operations *op, size_t op_size,
index 8575203d17ef2e9e772ac90eb8b669a32d108dae..ac552644cf73752e3e6530cec016136c16a61a54 100644 (file)
@@ -9,6 +9,9 @@
 
 #define FUSE_USE_VERSION 30
 
+/* Not really needed - just to test build with FUSE_USE_VERSION == 30 */
+#include <fuse.h>
+
 #include <fuse_config.h>
 #include <fuse_lowlevel.h>
 #include <stdio.h>
index d3c7af086e9be9db8ac5da3aef7010038d4a0b89..0c8fa7e8bbb985db453eef2b1ac14c81b551e568 100644 (file)
@@ -9,6 +9,9 @@
 
 #define FUSE_USE_VERSION 30
 
+/* Not really needed - just to test build with FUSE_USE_VERSION == 30 */
+#include <fuse.h>
+
 #include <fuse_config.h>
 #include <fuse_lowlevel.h>
 #include <stdio.h>