aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Josh Soref <jsoref@users.noreply.github.com>2017-12-01 14:18:49 -0500
committerGravatar Nikolaus Rath <Nikolaus@rath.org>2017-12-01 19:18:49 +0000
commita83cd72f641671b71b8268b1765e449cae071f3e (patch)
treebe62d6d239a6e357d71c67ccec95fa45082a3db0
parentf7c8b31a36108500b18e763ece30aa78588df0b7 (diff)
Handle mount ... -o nofail (#221)
Accept (and ignore) nofail mount option
-rw-r--r--ChangeLog.rst2
-rw-r--r--util/mount.fuse.c1
2 files changed, 3 insertions, 0 deletions
diff --git a/ChangeLog.rst b/ChangeLog.rst
index a3d5d6d..7b845b8 100644
--- a/ChangeLog.rst
+++ b/ChangeLog.rst
@@ -1,3 +1,5 @@
+* Support `mount -o nofail`
+
libfuse 3.2.1 (2017-11-14)
==========================
diff --git a/util/mount.fuse.c b/util/mount.fuse.c
index 363b12b..3f498db 100644
--- a/util/mount.fuse.c
+++ b/util/mount.fuse.c
@@ -154,6 +154,7 @@ int main(int argc, char *argv[])
int ignore = 0;
const char *ignore_opts[] = { "",
"user",
+ "nofail",
"nouser",
"users",
"auto",