[PATCH] mount: rprivate option fix

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


On Wednesday 23 March 2011 09:20, Roman Borisov wrote:
> fixed the mistake in writing for -make-rprivate option
> 
> Signed-off-by: Roman Borisov <ext-roman.borisov at nokia.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,
>  	)
>  

Applied, thanks!
-- 
vda


More information about the busybox mailing list