aboutsummaryrefslogtreecommitdiff
path: root/lib/cuse_lowlevel.c
diff options
context:
space:
mode:
authorGravatar Nikolaus Rath <Nikolaus@rath.org>2016-10-02 10:44:16 -0700
committerGravatar Nikolaus Rath <Nikolaus@rath.org>2016-10-02 10:52:45 -0700
commitf164e9b8ca319dd1279384ff495b5fa91e778d9e (patch)
tree01716850c17bcdd03b51e5f69b80c678c7618aae /lib/cuse_lowlevel.c
parent38ec9a4c2cb7a851ee22fd8939918329146eaed9 (diff)
Renamed fuse_lowlevel_new() to fuse_session_new().
Diffstat (limited to 'lib/cuse_lowlevel.c')
-rw-r--r--lib/cuse_lowlevel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/cuse_lowlevel.c b/lib/cuse_lowlevel.c
index cef14c6..3dd79d8 100644
--- a/lib/cuse_lowlevel.c
+++ b/lib/cuse_lowlevel.c
@@ -170,7 +170,7 @@ struct fuse_session *cuse_lowlevel_new(struct fuse_args *args,
lop.ioctl = clop->ioctl ? cuse_fll_ioctl : NULL;
lop.poll = clop->poll ? cuse_fll_poll : NULL;
- se = fuse_lowlevel_new(args, &lop, sizeof(lop), userdata);
+ se = fuse_session_new(args, &lop, sizeof(lop), userdata);
if (!se) {
free(cd);
return NULL;