diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-11-27 19:50:16 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-11-27 19:50:16 +0000 |
commit | 5e90e106474d81d2bf8a9b3769ef746ca05040fa (patch) | |
tree | 21e852130eb9fe9e9c09410d7d33d02093001c01 | |
parent | f1a6c6b362c8b529a3118d52dde1821be441e626 (diff) | |
download | busybox-w32-5e90e106474d81d2bf8a9b3769ef746ca05040fa.tar.gz busybox-w32-5e90e106474d81d2bf8a9b3769ef746ca05040fa.tar.bz2 busybox-w32-5e90e106474d81d2bf8a9b3769ef746ca05040fa.zip |
Closing bug 1040:
The "quiet" option is quietly (hah) ignored. It should be passed through
to the mount() syscall in the comma separated list of options.
I found the problem with the vfat/msdos filesystems, which uses
a quiet option to override some complaints and errors.
-rw-r--r-- | util-linux/mount.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util-linux/mount.c b/util-linux/mount.c index 027adc568..f8ae1df19 100644 --- a/util-linux/mount.c +++ b/util-linux/mount.c | |||
@@ -61,7 +61,7 @@ struct { | |||
61 | 61 | ||
62 | USE_FEATURE_MOUNT_FSTAB( | 62 | USE_FEATURE_MOUNT_FSTAB( |
63 | {"defaults", 0}, | 63 | {"defaults", 0}, |
64 | {"quiet", 0}, | 64 | /* {"quiet", 0}, - do not filter out, vfat wants to see it */ |
65 | {"noauto", MOUNT_NOAUTO}, | 65 | {"noauto", MOUNT_NOAUTO}, |
66 | {"swap", MOUNT_SWAP}, | 66 | {"swap", MOUNT_SWAP}, |
67 | USE_DESKTOP({"user", MOUNT_USERS},) | 67 | USE_DESKTOP({"user", MOUNT_USERS},) |