aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorGravatar Miklos Szeredi <miklos@szeredi.hu>2006-02-15 14:28:22 +0000
committerGravatar Miklos Szeredi <miklos@szeredi.hu>2006-02-15 14:28:22 +0000
commit1ee1a117c9b87c15c0fe13120a3458e50ab0fe5b (patch)
treee2591eab33c6b2ef80c69f6629d3f824cc1e7e18 /lib
parentd65cdfe63c14c1765dc0bd5ab818a2e41a1f2ba3 (diff)
fix
Diffstat (limited to 'lib')
-rw-r--r--lib/fuse_lowlevel.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/fuse_lowlevel.c b/lib/fuse_lowlevel.c
index efcc2a7..eeb296c 100644
--- a/lib/fuse_lowlevel.c
+++ b/lib/fuse_lowlevel.c
@@ -989,6 +989,11 @@ static void fuse_ll_destroy(void *data)
free(f);
}
+/*
+ * always call fuse_lowlevel_new_common() internally, to work around a
+ * misfeature in the FreeBSD runtime linker, which links the old
+ * version of a symbol to internal references.
+ */
struct fuse_session *fuse_lowlevel_new_common(struct fuse_args *args,
const struct fuse_lowlevel_ops *op,
size_t op_size, void *userdata)
@@ -1035,11 +1040,6 @@ struct fuse_session *fuse_lowlevel_new_common(struct fuse_args *args,
}
-/*
- * always call fuse_lowlevel_new_common() internally, to work around a
- * bug in the FreeBSD runtime linker, which links the old version of a
- * symbol to internal references.
- */
struct fuse_session *fuse_lowlevel_new(struct fuse_args *args,
const struct fuse_lowlevel_ops *op,
size_t op_size, void *userdata)