aboutsummaryrefslogtreecommitdiff
path: root/lib/cuse_lowlevel.c
diff options
context:
space:
mode:
authorGravatar Nikolaus Rath <Nikolaus@rath.org>2016-10-04 20:38:47 -0700
committerGravatar Nikolaus Rath <Nikolaus@rath.org>2016-10-04 20:47:26 -0700
commit161dc8d7243a82d7287a4370fcd94e9a0da4f812 (patch)
tree58e225457391f39d601957699cd7ed9b4059b25d /lib/cuse_lowlevel.c
parent2ed7af90879eabbaed1cc063b3aded73588d9b08 (diff)
Merge fuse_ll into fuse_session (part 2)
Replaced all references to req->f with req->se.
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 a3e6945..3a8b166 100644
--- a/lib/cuse_lowlevel.c
+++ b/lib/cuse_lowlevel.c
@@ -32,7 +32,7 @@ struct cuse_data {
static struct cuse_lowlevel_ops *req_clop(fuse_req_t req)
{
- return &req->f->cuse_data->clop;
+ return &req->se->cuse_data->clop;
}
static void cuse_fll_open(fuse_req_t req, fuse_ino_t ino,
@@ -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_session *f = req->f;
+ struct fuse_session *f = req->se;
struct cuse_data *cd = f->cuse_data;
size_t bufsize = f->bufsize;
struct cuse_lowlevel_ops *clop = req_clop(req);