aboutsummaryrefslogtreecommitdiff
path: root/lib/fuse_loop_mt.c
diff options
context:
space:
mode:
authorGravatar Nikolaus Rath <Nikolaus@rath.org>2016-10-04 20:41:52 -0700
committerGravatar Nikolaus Rath <Nikolaus@rath.org>2016-10-04 20:47:59 -0700
commitac7121d51432740a659104adf32f36e0039b5cf3 (patch)
treee367891b3d83d019cb591f93cae20f5e2d85e7d7 /lib/fuse_loop_mt.c
parent161dc8d7243a82d7287a4370fcd94e9a0da4f812 (diff)
Merge fuse_ll into fuse_session (part 3)
Replace se->f with se.
Diffstat (limited to 'lib/fuse_loop_mt.c')
-rw-r--r--lib/fuse_loop_mt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/fuse_loop_mt.c b/lib/fuse_loop_mt.c
index c925cd7..e6e2263 100644
--- a/lib/fuse_loop_mt.c
+++ b/lib/fuse_loop_mt.c
@@ -265,13 +265,13 @@ static int fuse_loop_start_thread(struct fuse_mt *mt)
w->mt = mt;
w->ch = NULL;
- if (mt->se->f->clone_fd) {
+ if (mt->se->clone_fd) {
w->ch = fuse_clone_chan(mt);
if(!w->ch) {
/* Don't attempt this again */
fprintf(stderr, "fuse: trying to continue "
"without -o clone_fd.\n");
- mt->se->f->clone_fd = 0;
+ mt->se->clone_fd = 0;
}
}