Fix the fuse_parse_cmdline@FUSE_3.0 ABI compat symbol
authorBernd Schubert <bschubert@ddn.com>
Sun, 11 Sep 2022 16:28:38 +0000 (18:28 +0200)
committerNikolaus Rath <Nikolaus@rath.org>
Sun, 11 Sep 2022 18:29:33 +0000 (19:29 +0100)
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.

lib/helper.c

index ea5f87d1eb90288a1ee227dc93b4b22a33275cfe..84013b91cb49fd9bd2d8e85bd562cc92d18ca040 100644 (file)
@@ -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)
 {