aboutsummaryrefslogtreecommitdiff
path: root/example/notify_store_retrieve.c
diff options
context:
space:
mode:
authorGravatar Nikolaus Rath <Nikolaus@rath.org>2016-10-10 21:29:36 -0700
committerGravatar Nikolaus Rath <Nikolaus@rath.org>2016-10-13 10:35:12 -0700
commit2bfa342cdadbcb3d4421dd752bbe1e63e0f6430f (patch)
tree50965d9492dd23f52a5274add9b322baa6d7a396 /example/notify_store_retrieve.c
parent17b23ac3a5149eeb4d38d4830d9c5c80059ffdc3 (diff)
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.
Diffstat (limited to 'example/notify_store_retrieve.c')
-rw-r--r--example/notify_store_retrieve.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/example/notify_store_retrieve.c b/example/notify_store_retrieve.c
index 76f3291..5b5fa63 100644
--- a/example/notify_store_retrieve.c
+++ b/example/notify_store_retrieve.c
@@ -393,7 +393,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);
assert(retrieve_status != 1);
fuse_session_unmount(se);