diff options
author | Denis Vlasenko | 2008-12-10 11:28:30 +0000 |
---|---|---|
committer | Denis Vlasenko | 2008-12-10 11:28:30 +0000 |
commit | 3f8f4b2a93524c3c420241256a0c8cf915446bc7 (patch) | |
tree | 35eeb72c223d6337b740a087516976c3f0894d37 /util-linux | |
parent | a3ca7cf069177dba7b3c064324bd77e39483f13a (diff) | |
download | busybox-3f8f4b2a93524c3c420241256a0c8cf915446bc7.zip busybox-3f8f4b2a93524c3c420241256a0c8cf915446bc7.tar.gz |
placate Rob's qualms about mount.c
Diffstat (limited to 'util-linux')
-rw-r--r-- | util-linux/mount.c | 80 |
1 files changed, 40 insertions, 40 deletions
diff --git a/util-linux/mount.c b/util-linux/mount.c index 175328f..1c37151 100644 --- a/util-linux/mount.c +++ b/util-linux/mount.c @@ -161,56 +161,56 @@ static const int32_t mount_options[] = { 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 ; |