aboutsummaryrefslogtreecommitdiffstats
path: root/example
diff options
context:
space:
mode:
Diffstat (limited to 'example')
-rw-r--r--example/passthrough_hp.cc3
-rw-r--r--example/passthrough_ll.c3
2 files changed, 0 insertions, 6 deletions
diff --git a/example/passthrough_hp.cc b/example/passthrough_hp.cc
index 7f83a7b..7c1dadf 100644
--- a/example/passthrough_hp.cc
+++ b/example/passthrough_hp.cc
@@ -190,9 +190,6 @@ static int get_fs_fd(fuse_ino_t ino) {
static void sfs_init(void *userdata, fuse_conn_info *conn) {
(void)userdata;
- if (conn->capable & FUSE_CAP_EXPORT_SUPPORT)
- conn->want |= FUSE_CAP_EXPORT_SUPPORT;
-
if (fs.timeout && conn->capable & FUSE_CAP_WRITEBACK_CACHE)
conn->want |= FUSE_CAP_WRITEBACK_CACHE;
diff --git a/example/passthrough_ll.c b/example/passthrough_ll.c
index 46cc8e0..4a597f2 100644
--- a/example/passthrough_ll.c
+++ b/example/passthrough_ll.c
@@ -170,9 +170,6 @@ static void lo_init(void *userdata,
{
struct lo_data *lo = (struct lo_data*) userdata;
- if(conn->capable & FUSE_CAP_EXPORT_SUPPORT)
- conn->want |= FUSE_CAP_EXPORT_SUPPORT;
-
if (lo->writeback &&
conn->capable & FUSE_CAP_WRITEBACK_CACHE) {
if (lo->debug)