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
commit a90e876667
Notes: sideshowbarker 2024-07-17 07:25:39 +09:00

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)