svn commit: trunk/busybox/util-linux

vda at busybox.net vda at busybox.net
Wed Dec 10 11:28:30 UTC 2008


Author: vda
Date: 2008-12-10 03:28:30 -0800 (Wed, 10 Dec 2008)
New Revision: 24356

Log:
placate Rob's qualms about mount.c



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


Changeset:
Modified: trunk/busybox/util-linux/mount.c
===================================================================
--- trunk/busybox/util-linux/mount.c	2008-12-10 11:24:33 UTC (rev 24355)
+++ trunk/busybox/util-linux/mount.c	2008-12-10 11:28:30 UTC (rev 24356)
@@ -161,56 +161,56 @@
 
 static const char mount_option_str[] =
 	USE_FEATURE_MOUNT_LOOP(
-		"loop" "\0"
+		"loop\0"
 	)
 	USE_FEATURE_MOUNT_FSTAB(
-		"defaults" "\0"
-		// "quiet" "\0" - do not filter out, vfat wants to see it
-		"noauto" "\0"
-		"sw" "\0"
-		"swap" "\0"
-		USE_DESKTOP("user" "\0")
-		USE_DESKTOP("users" "\0")
-		"_netdev" "\0"
+		"defaults\0"
+		// "quiet\0" - do not filter out, vfat wants to see it
+		"noauto\0"
+		"sw\0"
+		"swap\0"
+		USE_DESKTOP("user\0")
+		USE_DESKTOP("users\0")
+		"_netdev\0"
 	)
 	USE_FEATURE_MOUNT_FLAGS(
 		// vfs flags
-		"nosuid" "\0"
-		"suid" "\0"
-		"dev" "\0"
-		"nodev" "\0"
-		"exec" "\0"
-		"noexec" "\0"
-		"sync" "\0"
-		"dirsync" "\0"
-		"async" "\0"
-		"atime" "\0"
-		"noatime" "\0"
-		"diratime" "\0"
-		"nodiratime" "\0"
-		"mand" "\0"
-		"nomand" "\0"
-		"relatime" "\0"
-		"norelatime" "\0"
-		"loud" "\0"
+		"nosuid\0"
+		"suid\0"
+		"dev\0"
+		"nodev\0"
+		"exec\0"
+		"noexec\0"
+		"sync\0"
+		"dirsync\0"
+		"async\0"
+		"atime\0"
+		"noatime\0"
+		"diratime\0"
+		"nodiratime\0"
+		"mand\0"
+		"nomand\0"
+		"relatime\0"
+		"norelatime\0"
+		"loud\0"
 
 		// action flags
-		"bind" "\0"
-		"move" "\0"
-		"shared" "\0"
-		"slave" "\0"
-		"private" "\0"
-		"unbindable" "\0"
-		"rshared" "\0"
-		"rslave" "\0"
-		"rprivate" "\0"
-		"runbindable" "\0"
+		"bind\0"
+		"move\0"
+		"shared\0"
+		"slave\0"
+		"private\0"
+		"unbindable\0"
+		"rshared\0"
+		"rslave\0"
+		"rprivate\0"
+		"runbindable\0"
 	)
 
 	// Always understood.
-	"ro" "\0"        // vfs flag
-	"rw" "\0"        // vfs flag
-	"remount" "\0"   // action flag
+	"ro\0"        // vfs flag
+	"rw\0"        // vfs flag
+	"remount\0"   // action flag
 ;
 
 




More information about the busybox-cvs mailing list