diff options
author | Linus Groh <mail@linusgroh.de> | 2021-08-28 11:26:32 +0100 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2021-08-28 11:26:32 +0100 |
commit | 95751987fb505b4586c7a3a32a9e0242b0004a05 (patch) | |
tree | a997ffb458d89eb1086a8dd9ad888faa5a38931e /Userland/Applications | |
parent | c5e5ea71d76e8bbaf43e679502df6ce2c7c0655f (diff) | |
download | serenity-95751987fb505b4586c7a3a32a9e0242b0004a05.zip |
MailSettings: Remove proc and exec from pleges
Diffstat (limited to 'Userland/Applications')
-rw-r--r-- | Userland/Applications/MailSettings/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
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; } |