aboutsummaryrefslogtreecommitdiff
path: root/lib/fuse.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/fuse.c
parent38ec9a4c2cb7a851ee22fd8939918329146eaed9 (diff)
Renamed fuse_lowlevel_new() to fuse_session_new().
Diffstat (limited to 'lib/fuse.c')
-rw-r--r--lib/fuse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/fuse.c b/lib/fuse.c
index e17b6b3..47b72d0 100644
--- a/lib/fuse.c
+++ b/lib/fuse.c
@@ -4719,7 +4719,7 @@ struct fuse *fuse_new(struct fuse_chan *ch, struct fuse_args *args,
/* This function will return NULL if there is an --help
or --version argument in `args` */
- f->se = fuse_lowlevel_new(args, &llop, sizeof(llop), f);
+ f->se = fuse_session_new(args, &llop, sizeof(llop), f);
if (f->se == NULL) {
if (f->conf.help)
fuse_lib_help_modules();