aboutsummaryrefslogtreecommitdiff
path: root/util-linux
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-08-29 11:49:41 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-08-29 11:49:41 +0000
commitfb48f6c982479f21457ef652f8a9ffc14b0a6b75 (patch)
tree03629b645aa7d090eab8f9424456a482c5939336 /util-linux
parent76c476f817864ce27c1c241528a9d005246bdaae (diff)
downloadbusybox-fb48f6c982479f21457ef652f8a9ffc14b0a6b75.tar.gz
mount: allow (and ignore) -i
Diffstat (limited to 'util-linux')
-rw-r--r--util-linux/mount.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/util-linux/mount.c b/util-linux/mount.c
index 0819be4d1..e7818ac9f 100644
--- a/util-linux/mount.c
+++ b/util-linux/mount.c
@@ -1557,7 +1557,7 @@ int mount_main(int argc, char **argv)
// Parse remaining options
- opt = getopt32(argv, "o:t:rwanfvs", &opt_o, &fstype);
+ opt = getopt32(argv, "o:t:rwanfvsi", &opt_o, &fstype);
if (opt & 0x1) append_mount_options(&cmdopts, opt_o); // -o
//if (opt & 0x2) // -t
if (opt & 0x4) append_mount_options(&cmdopts, "ro"); // -r
@@ -1567,6 +1567,7 @@ int mount_main(int argc, char **argv)
if (opt & 0x40) USE_FEATURE_MTAB_SUPPORT(fakeIt = 1); // -f
//if (opt & 0x80) // -v: verbose (ignore)
//if (opt & 0x100) // -s: sloppy (ignore)
+ //if (opt & 0x200) // -i: don't call mount.<fstype> (ignore)
argv += optind;
argc -= optind;