aboutsummaryrefslogtreecommitdiff
path: root/util-linux/mount.c
diff options
context:
space:
mode:
authorRoman Borisov <ext-roman.borisov@nokia.com>2011-03-23 11:20:25 +0300
committerDenys Vlasenko <vda.linux@googlemail.com>2011-03-26 23:02:05 +0100
commitd3679d2491fa85e98db3bf397d5330ddcb9fc98a (patch)
tree6581fa4f0fcbd340c5e4a19714b5329d572c2605 /util-linux/mount.c
parentc162bcdcd1c5cb000a8ceaf4413d4abdfa6e3dfc (diff)
downloadbusybox-d3679d2491fa85e98db3bf397d5330ddcb9fc98a.tar.gz
mount: rprivate option fix
fixed the mistake in writing for -make-rprivate option Signed-off-by: Roman Borisov <ext-roman.borisov@nokia.com> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'util-linux/mount.c')
-rw-r--r--util-linux/mount.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/util-linux/mount.c b/util-linux/mount.c
index 989e5d1a8..e672a73f4 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,
)