From 2bfa342cdadbcb3d4421dd752bbe1e63e0f6430f Mon Sep 17 00:00:00 2001 From: Nikolaus Rath Date: Mon, 10 Oct 2016 21:29:36 -0700 Subject: Make -o clone_fd into a parameter of session_loop_mt(). This option really affects the behavior of the session loop, not the low-level interface. Therefore, it does not belong in the fuse_session object. --- example/passthrough_ll.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'example/passthrough_ll.c') diff --git a/example/passthrough_ll.c b/example/passthrough_ll.c index 66f92cf..df9d7d3 100644 --- a/example/passthrough_ll.c +++ b/example/passthrough_ll.c @@ -504,7 +504,7 @@ int main(int argc, char *argv[]) if (opts.singlethread) ret = fuse_session_loop(se); else - ret = fuse_session_loop_mt(se); + ret = fuse_session_loop_mt(se, opts.clone_fd); fuse_session_unmount(se); err_out3: -- cgit v1.2.3