fix
authorMiklos Szeredi <miklos@szeredi.hu>
Wed, 15 Feb 2006 14:28:22 +0000 (14:28 +0000)
committerMiklos Szeredi <miklos@szeredi.hu>
Wed, 15 Feb 2006 14:28:22 +0000 (14:28 +0000)
lib/fuse_lowlevel.c

index efcc2a71f08e20b90afe68046ca1e21e50315fe7..eeb296c84bc1563fa67046917af1445612ad83a7 100644 (file)
@@ -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)