[git commit master 1/1] mount: rprivate option fix

Denys Vlasenko vda.linux at googlemail.com
Sat Mar 26 22:02:05 UTC 2011


commit: http://git.busybox.net/busybox/commit/?id=d3679d2491fa85e98db3bf397d5330ddcb9fc98a
branch: http://git.busybox.net/busybox/commit/?id=refs/heads/master

fixed the mistake in writing for -make-rprivate option

Signed-off-by: Roman Borisov <ext-roman.borisov at nokia.com>
Signed-off-by: Denys Vlasenko <vda.linux at googlemail.com>
---
 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 989e5d1..e672a73 100644
--- a/util-linux/mount.c
+++ b/util-linux/mount.c
@@ -192,7 +192,7 @@ static const int32_t mount_options[] = {
 		/* "unbindable"  */ MS_UNBINDABLE,
 		/* "rshared"     */ MS_SHARED|MS_RECURSIVE,
 		/* "rslave"      */ MS_SLAVE|MS_RECURSIVE,
-		/* "rprivate"    */ MS_SLAVE|MS_RECURSIVE,
+		/* "rprivate"    */ MS_PRIVATE|MS_RECURSIVE,
 		/* "runbindable" */ MS_UNBINDABLE|MS_RECURSIVE,
 	)
 
-- 
1.7.3.4



More information about the busybox-cvs mailing list