aboutsummaryrefslogtreecommitdiff
path: root/util-linux
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2004-04-12 15:02:53 +0000
committerEric Andersen <andersen@codepoet.org>2004-04-12 15:02:53 +0000
commitee4b7d496d89c9994c79604014eb23fd087c0917 (patch)
treee1241f0d206aa60e551a22562025eb387401952f /util-linux
parent19efb3dc59920b9fed6ec16566a2046e9f3251d9 (diff)
downloadbusybox-ee4b7d496d89c9994c79604014eb23fd087c0917.tar.gz
make mount ignore -n when CONFIG_FEATURE_MTAB_SUPPORT is disabled
Diffstat (limited to 'util-linux')
-rw-r--r--util-linux/mount.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/util-linux/mount.c b/util-linux/mount.c
index 098e63663..3a241540e 100644
--- a/util-linux/mount.c
+++ b/util-linux/mount.c
@@ -402,11 +402,11 @@ extern int mount_main(int argc, char **argv)
case 'f':
fakeIt = TRUE;
break;
-#ifdef CONFIG_FEATURE_MTAB_SUPPORT
case 'n':
+#ifdef CONFIG_FEATURE_MTAB_SUPPORT
useMtab = FALSE;
- break;
#endif
+ break;
case 'v':
break; /* ignore -v */
}