aboutsummaryrefslogtreecommitdiff
path: root/lib/cuse_lowlevel.c
diff options
context:
space:
mode:
authorGravatar Nikolaus Rath <Nikolaus@rath.org>2016-10-04 20:32:38 -0700
committerGravatar Nikolaus Rath <Nikolaus@rath.org>2016-10-04 20:46:34 -0700
commit2ed7af90879eabbaed1cc063b3aded73588d9b08 (patch)
treef53fc5ccfb0fa4f41dd2e6332914981f4bdd216a /lib/cuse_lowlevel.c
parent595f7c39069786981b2441bf8f369bcf833a2320 (diff)
Merge fuse_ll into fuse_session (part 1)
Merged the structures, and replaced fuse_ll with fuse_session in all type definitions.
Diffstat (limited to 'lib/cuse_lowlevel.c')
-rw-r--r--lib/cuse_lowlevel.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/cuse_lowlevel.c b/lib/cuse_lowlevel.c
index 03ae9a6..a3e6945 100644
--- a/lib/cuse_lowlevel.c
+++ b/lib/cuse_lowlevel.c
@@ -152,7 +152,7 @@ struct fuse_session *cuse_lowlevel_new(struct fuse_args *args,
struct fuse_lowlevel_ops lop;
struct cuse_data *cd;
struct fuse_session *se;
- struct fuse_ll *ll;
+ struct fuse_session *ll;
cd = cuse_prep_data(ci, clop);
if (!cd)
@@ -198,7 +198,7 @@ void cuse_lowlevel_init(fuse_req_t req, fuse_ino_t nodeid, const void *inarg)
{
struct fuse_init_in *arg = (struct fuse_init_in *) inarg;
struct cuse_init_out outarg;
- struct fuse_ll *f = req->f;
+ struct fuse_session *f = req->f;
struct cuse_data *cd = f->cuse_data;
size_t bufsize = f->bufsize;
struct cuse_lowlevel_ops *clop = req_clop(req);