diff options
-rw-r--r-- | 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 989e5d1a8..e672a73f4 100644 --- a/util-linux/mount.c +++ b/util-linux/mount.c | |||
@@ -192,7 +192,7 @@ static const int32_t mount_options[] = { | |||
192 | /* "unbindable" */ MS_UNBINDABLE, | 192 | /* "unbindable" */ MS_UNBINDABLE, |
193 | /* "rshared" */ MS_SHARED|MS_RECURSIVE, | 193 | /* "rshared" */ MS_SHARED|MS_RECURSIVE, |
194 | /* "rslave" */ MS_SLAVE|MS_RECURSIVE, | 194 | /* "rslave" */ MS_SLAVE|MS_RECURSIVE, |
195 | /* "rprivate" */ MS_SLAVE|MS_RECURSIVE, | 195 | /* "rprivate" */ MS_PRIVATE|MS_RECURSIVE, |
196 | /* "runbindable" */ MS_UNBINDABLE|MS_RECURSIVE, | 196 | /* "runbindable" */ MS_UNBINDABLE|MS_RECURSIVE, |
197 | ) | 197 | ) |
198 | 198 | ||