From 3f391d80c43f18f8d2369891137a21e906935bda Mon Sep 17 00:00:00 2001 From: int16 Date: Wed, 9 Mar 2022 22:37:09 +1100 Subject: [PATCH] SystemMonitor: Recognise wxallowed mount flag --- Userland/Applications/SystemMonitor/main.cpp | 1 + 1 file changed, 1 insertion(+) 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 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();