From a90e876667dabc76b0c3c48041e6551386ebcd74 Mon Sep 17 00:00:00 2001 From: "Liav A." Date: Thu, 14 Mar 2024 21:26:54 +0200 Subject: [PATCH] Userland/mount: Fix srcobfuscate => srchidden when printing mounts Fixes 0734de9f9a1f3cd945e9df230eb52fc475810b53. By mistake, I forgot to change this instance to "srchidden", so let's fix this. --- Userland/Utilities/mount.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Utilities/mount.cpp b/Userland/Utilities/mount.cpp index 9abc8e2ea4..79d7921e52 100644 --- a/Userland/Utilities/mount.cpp +++ b/Userland/Utilities/mount.cpp @@ -184,7 +184,7 @@ static ErrorOr 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)