aboutsummaryrefslogtreecommitdiff
path: root/lib/helper.c
diff options
context:
space:
mode:
authorGravatar Miklos Szeredi <mszeredi@suse.cz>2013-06-21 18:20:23 +0200
committerGravatar Miklos Szeredi <mszeredi@suse.cz>2013-06-21 18:20:23 +0200
commitf9a7c2b1135beeacbdcecab9065eddd2f7e68dbd (patch)
tree386480447871aa2473691c49f8253163b7ace914 /lib/helper.c
parent561d7054d856eea6c2d634093546d6af773dada9 (diff)
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.
Diffstat (limited to 'lib/helper.c')
-rw-r--r--lib/helper.c2
1 files changed, 1 insertions, 1 deletions
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);