From 20915795a8497192132680aaff6a9009e59a4cf2 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Fri, 15 Jan 2021 12:14:42 +0100 Subject: Everywhere: Pledge "sendfd" in WindowServer client programs This is needed for the new way we transfer window backing stores. --- Userland/Applications/FontEditor/main.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Userland/Applications/FontEditor') diff --git a/Userland/Applications/FontEditor/main.cpp b/Userland/Applications/FontEditor/main.cpp index f0a72d1d29..31e0450814 100644 --- a/Userland/Applications/FontEditor/main.cpp +++ b/Userland/Applications/FontEditor/main.cpp @@ -44,14 +44,14 @@ int main(int argc, char** argv) { - if (pledge("stdio shared_buffer thread rpath accept unix cpath wpath fattr unix", nullptr) < 0) { + if (pledge("stdio sendfd shared_buffer thread rpath accept unix cpath wpath fattr unix", nullptr) < 0) { perror("pledge"); return 1; } auto app = GUI::Application::construct(argc, argv); - if (pledge("stdio shared_buffer thread rpath accept cpath wpath unix", nullptr) < 0) { + if (pledge("stdio sendfd shared_buffer thread rpath accept cpath wpath unix", nullptr) < 0) { perror("pledge"); return 1; } @@ -64,7 +64,7 @@ int main(int argc, char** argv) return 1; } - if (pledge("stdio shared_buffer thread rpath accept cpath wpath", nullptr) < 0) { + if (pledge("stdio sendfd shared_buffer thread rpath accept cpath wpath", nullptr) < 0) { perror("pledge"); return 1; } -- cgit v1.2.3