diff --git a/Userland/Applications/MailSettings/main.cpp b/Userland/Applications/MailSettings/main.cpp index 23826390bd..ee4f8cd461 100644 --- a/Userland/Applications/MailSettings/main.cpp +++ b/Userland/Applications/MailSettings/main.cpp @@ -11,14 +11,14 @@ int main(int argc, char** argv) { - if (pledge("stdio rpath cpath wpath recvfd sendfd unix proc exec", nullptr) < 0) { + if (pledge("stdio rpath cpath wpath recvfd sendfd unix", nullptr) < 0) { perror("pledge"); return 1; } auto app = GUI::Application::construct(argc, argv); - if (pledge("stdio rpath cpath wpath recvfd sendfd proc exec", nullptr) < 0) { + if (pledge("stdio rpath cpath wpath recvfd sendfd", nullptr) < 0) { perror("pledge"); return 1; }