fuse_new_30(): call fuse_new_31(), not fuse_new()
authorNikolaus Rath <Nikolaus@rath.org>
Thu, 13 Jul 2017 11:22:12 +0000 (13:22 +0200)
committerNikolaus Rath <Nikolaus@rath.org>
Thu, 13 Jul 2017 11:22:12 +0000 (13:22 +0200)
I believe this function call is resolved by the compiler, not
the linker, so this seems safer.

Thanks to Chris Clayton for spotting this.

lib/fuse.c

index 5160eb11a89df0fe0cb6d7e7f4ca1e499ca810a9..08dab22dfd297abf89a76be23ea0feb4a0e2e8a3 100644 (file)
@@ -4647,7 +4647,7 @@ struct fuse *fuse_new_30(struct fuse_args *args,
                fuse_lib_help(args);
                return NULL;
        } else
-               return fuse_new(args, op, op_size, user_data);
+               return fuse_new_31(args, op, op_size, user_data);
 }
 
 /* Explicit prototype to prevent compiler warnings