From: Bernd Schubert Date: Sun, 11 Sep 2022 16:28:38 +0000 (+0200) Subject: Fix the fuse_parse_cmdline@FUSE_3.0 ABI compat symbol X-Git-Tag: fuse-3.13.0~18 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=b1290d4c091a5c590e61a6195e625eab33300673;p=qemu-gpiodev%2Flibfuse.git Fix the fuse_parse_cmdline@FUSE_3.0 ABI compat symbol There was a simple typo and sym1 didn't match the function name with the older __asm__(".symver " sym1 "," sym2) way to define ABI compatibility. Witht the newer "__attribute__ ((symver (sym2)))" sym1 is not used at all and in manual testing the issue didn't come up therefore. --- diff --git a/lib/helper.c b/lib/helper.c index ea5f87d..84013b9 100644 --- a/lib/helper.c +++ b/lib/helper.c @@ -233,7 +233,7 @@ int fuse_parse_cmdline_312(struct fuse_args *args, */ int fuse_parse_cmdline_30(struct fuse_args *args, struct fuse_cmdline_opts *opts); -FUSE_SYMVER("fuse_parse_cmdline_37", "fuse_parse_cmdline@FUSE_3.0") +FUSE_SYMVER("fuse_parse_cmdline_30", "fuse_parse_cmdline@FUSE_3.0") int fuse_parse_cmdline_30(struct fuse_args *args, struct fuse_cmdline_opts *out_opts) {