From cf4fa936be63a8f5931886142daca54b99293a52 Mon Sep 17 00:00:00 2001 From: Brian Gianforcaro Date: Sat, 27 Nov 2021 14:26:34 -0800 Subject: Everywhere: Use default execpromises argument for Core::System::pledge --- Userland/Services/RequestServer/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Userland/Services/RequestServer') diff --git a/Userland/Services/RequestServer/main.cpp b/Userland/Services/RequestServer/main.cpp index 5f4a26b0dd..02c0474ddd 100644 --- a/Userland/Services/RequestServer/main.cpp +++ b/Userland/Services/RequestServer/main.cpp @@ -19,7 +19,7 @@ ErrorOr serenity_main(Main::Arguments) { - TRY(Core::System::pledge("stdio inet accept unix rpath sendfd recvfd sigaction", nullptr)); + TRY(Core::System::pledge("stdio inet accept unix rpath sendfd recvfd sigaction")); signal(SIGINFO, [](int) { RequestServer::ConnectionCache::dump_jobs(); }); @@ -28,7 +28,7 @@ ErrorOr serenity_main(Main::Arguments) Core::EventLoop event_loop; // FIXME: Establish a connection to LookupServer and then drop "unix"? - TRY(Core::System::pledge("stdio inet accept unix sendfd recvfd", nullptr)); + TRY(Core::System::pledge("stdio inet accept unix sendfd recvfd")); TRY(Core::System::unveil("/tmp/portal/lookup", "rw")); TRY(Core::System::unveil(nullptr, nullptr)); -- cgit v1.2.3