Control: tags -1 + patch

Good news: The attached patch fixes the issue for me.

See also this comment in upstream fuse:
https://github.com/libfuse/libfuse/blob/master/include/fuse.h#L1082

Sven

-- 
GPG Fingerprint
3DF5 E8AA 43FC 9FDF D086 F195 ADF5 0EDA F8AD D585
diff --git a/debian/patches/Add-FUSE-3-support.patch b/debian/patches/Add-FUSE-3-support.patch
index 029214596..65fbdc66a 100644
--- a/debian/patches/Add-FUSE-3-support.patch
+++ b/debian/patches/Add-FUSE-3-support.patch
@@ -190,7 +190,7 @@ index aaf740a..b91fadc 100644
 +    return -1;
 +  }
 +
-+  if (!fuse_mount (g->fuse, localmountpoint)) {
++  if (fuse_mount (g->fuse, localmountpoint) == -1) {
 +    error (g, _("fuse_mount failed: %s, see error messages above"),
 +           localmountpoint);
 +    fuse_opt_free_args (&args);

Attachment: signature.asc
Description: This is a digitally signed message part

Reply via email to