summaryrefslogtreecommitdiff
path: root/Userland/Applications
diff options
context:
space:
mode:
authorint16 <jakewestrip@live.com>2022-03-09 22:37:09 +1100
committerAndreas Kling <kling@serenityos.org>2022-03-22 12:20:19 +0100
commit3f391d80c43f18f8d2369891137a21e906935bda (patch)
treeecdc780b7dd271b14f956b0993f722dfc0470446 /Userland/Applications
parent8a523568cb5bd799bebf940178d501c2df493653 (diff)
downloadserenity-3f391d80c43f18f8d2369891137a21e906935bda.zip
SystemMonitor: Recognise wxallowed mount flag
Diffstat (limited to 'Userland/Applications')
-rw-r--r--Userland/Applications/SystemMonitor/main.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Applications/SystemMonitor/main.cpp b/Userland/Applications/SystemMonitor/main.cpp
index 23c0ce68bd..e9f8c90a54 100644
--- a/Userland/Applications/SystemMonitor/main.cpp
+++ b/Userland/Applications/SystemMonitor/main.cpp
@@ -550,6 +550,7 @@ NonnullRefPtr<GUI::Widget> build_storage_widget()
check(MS_NOSUID, "nosuid");
check(MS_BIND, "bind");
check(MS_RDONLY, "ro");
+ check(MS_WXALLOWED, "wxallowed");
if (builder.string_view().is_empty())
return String("defaults");
return builder.to_string();