diff options
author | Xi Ruoyao <xry111@mengyan1223.wang> | 2019-04-04 09:01:45 +0000 |
---|---|---|
committer | Ondrej Holy <oholy@redhat.com> | 2019-04-04 09:01:45 +0000 |
commit | 7a0a06186b6fef07b8fce2360c04fd075fc84ed1 (patch) | |
tree | 9568fe6af483981b82bf4541370bd9dddd53267d /daemon | |
parent | 535378162aad071afdf6d4736c37a47a157f2f4d (diff) | |
download | gvfs-7a0a06186b6fef07b8fce2360c04fd075fc84ed1.tar.gz |
fuse: Adapt gvfsd-fuse to use fuse 3.x
Gvfsd-fuse required the old 2.x versions of fuse. Fuse developers
encourage developers to transition to the actively developed libfuse
3.x. This change adapt gvfsd-fuse to build with fuse 3.x. Note that
fuse is no longer compatible with fuse 2.x. It now requires fuse 3.0.0
or later to build.
Closes: https://gitlab.gnome.org/GNOME/gvfs/issues/323
Diffstat (limited to 'daemon')
-rw-r--r-- | daemon/main.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/daemon/main.c b/daemon/main.c index dca90396..d145c5f8 100644 --- a/daemon/main.c +++ b/daemon/main.c @@ -96,9 +96,7 @@ on_name_acquired (GDBusConnection *connection, argv2[0] = LIBEXEC_DIR "/gvfsd-fuse"; argv2[1] = fuse_path; argv2[2] = "-f"; - argv2[3] = "-o"; - argv2[4] = "big_writes"; - argv2[5] = NULL; + argv2[3] = NULL; g_spawn_async (NULL, argv2, |