mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 07:54:58 +00:00
Userland/mount: Fix srcobfuscate => srchidden when printing mounts
Fixes 0734de9f9a
.
By mistake, I forgot to change this instance to "srchidden", so let's
fix this.
This commit is contained in:
parent
df9dd8ec69
commit
a90e876667
1 changed files with 1 additions and 1 deletions
|
@ -184,7 +184,7 @@ static ErrorOr<void> print_mounts()
|
||||||
if (mount_flags & MS_NOREGULAR)
|
if (mount_flags & MS_NOREGULAR)
|
||||||
out(",noregular");
|
out(",noregular");
|
||||||
if (mount_flags & MS_SRCHIDDEN)
|
if (mount_flags & MS_SRCHIDDEN)
|
||||||
out(",srcobfuscate");
|
out(",srchidden");
|
||||||
if (mount_flags & MS_NOEXEC)
|
if (mount_flags & MS_NOEXEC)
|
||||||
out(",noexec");
|
out(",noexec");
|
||||||
if (mount_flags & MS_NOSUID)
|
if (mount_flags & MS_NOSUID)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue