fuse_new: Fix non symboled call to _fuse_new_317
authorBernd Schubert <bernd@bsbernd.com>
Mon, 10 Feb 2025 00:52:08 +0000 (01:52 +0100)
committerBernd Schubert <bernd@bsbernd.com>
Mon, 10 Feb 2025 15:56:45 +0000 (16:56 +0100)
Acidentally the wrong non-existing function was ccalled.

Signed-off-by: Bernd Schubert <bernd@bsbernd.com>
include/fuse.h

index ae8d80ee42681120d1ab3c7bc6ebb4d03d391bd7..ab0c04a805e9dc726401cfc3606c648dc9fb056b 100644 (file)
@@ -1094,7 +1094,7 @@ fuse_new(struct fuse_args *args,
                .padding = 0
        };
 
-       return _fuse_new(args, op, op_size, &version, user_data);
+       return _fuse_new_317(args, op, op_size, &version, user_data);
 }
 #endif /* LIBFUSE_BUILT_WITH_VERSIONED_SYMBOLS */
 #endif