svn commit: trunk/busybox/util-linux

vda at busybox.net vda at busybox.net
Mon Nov 27 19:50:17 UTC 2006


Author: vda
Date: 2006-11-27 11:50:16 -0800 (Mon, 27 Nov 2006)
New Revision: 16694

Log:
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.


Modified:
   trunk/busybox/util-linux/mount.c


Changeset:
Modified: trunk/busybox/util-linux/mount.c
===================================================================
--- trunk/busybox/util-linux/mount.c	2006-11-27 17:29:09 UTC (rev 16693)
+++ trunk/busybox/util-linux/mount.c	2006-11-27 19:50:16 UTC (rev 16694)
@@ -61,7 +61,7 @@
 
 	USE_FEATURE_MOUNT_FSTAB(
 		{"defaults", 0},
-		{"quiet", 0},
+		/* {"quiet", 0}, - do not filter out, vfat wants to see it */
 		{"noauto", MOUNT_NOAUTO},
 		{"swap", MOUNT_SWAP},
 		USE_DESKTOP({"user",  MOUNT_USERS},)




More information about the busybox-cvs mailing list