summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2015-01-12 12:14:59 -0500
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2015-01-12 12:16:38 -0500
commit76c37ab6d205c95e8f43ffbc19553b936330195a (patch)
tree0747e9921b060634e63e3265c8cc03534e8436ec /src/core
parenta9c8343e83ec09f80a76930573b2592f97ae4283 (diff)
core/mount: remove "fail" again
deb6120920 'man: there's actually no "fail" fstab option, but only "nofail" removed it from our documentation, which I missed. fstab(5) only mentions "auto", "noauto", and "nofail". Stick to those three.
Diffstat (limited to 'src/core')
-rw-r--r--src/core/mount.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/mount.c b/src/core/mount.c
index 5c87ed31e..612d15077 100644
--- a/src/core/mount.c
+++ b/src/core/mount.c
@@ -920,7 +920,7 @@ static void mount_enter_mounting(Mount *m) {
_cleanup_free_ char *opts = NULL;
r = fstab_filter_options(m->parameters_fragment.options,
- "nofail\0" "fail\0" "noauto\0" "auto\0", NULL, NULL, &opts);
+ "nofail\0" "noauto\0" "auto\0", NULL, NULL, &opts);
if (r < 0)
goto fail;