From f9a7c2b1135beeacbdcecab9065eddd2f7e68dbd Mon Sep 17 00:00:00 2001 From: Miklos Szeredi Date: Fri, 21 Jun 2013 18:20:23 +0200 Subject: libfuse: remove session and chan abstractions There's actually just one type of channel and session, so we don't need the generic callback functions. --- lib/helper.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/helper.c') diff --git a/lib/helper.c b/lib/helper.c index 139e1ae..204bb22 100644 --- a/lib/helper.c +++ b/lib/helper.c @@ -235,7 +235,7 @@ struct fuse_chan *fuse_mount(const char *mountpoint, struct fuse_args *args) if (fd == -1) return NULL; - ch = fuse_kern_chan_new(fd); + ch = fuse_chan_new(fd); if (!ch) fuse_kern_unmount(mountpoint, fd); -- cgit v1.2.3