mirror of https://github.com/mirror/busybox.git
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>1_19_stable
parent
c162bcdcd1
commit
d3679d2491
|
@ -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,
|
||||
)
|
||||
|
||||
|
|
Loading…
Reference in New Issue