1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-14 08:24: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:
Liav A. 2024-03-14 21:26:54 +02:00 committed by Andrew Kaster
parent df9dd8ec69
commit a90e876667

View file

@ -184,7 +184,7 @@ static ErrorOr<void> print_mounts()
if (mount_flags & MS_NOREGULAR)
out(",noregular");
if (mount_flags & MS_SRCHIDDEN)
out(",srcobfuscate");
out(",srchidden");
if (mount_flags & MS_NOEXEC)
out(",noexec");
if (mount_flags & MS_NOSUID)