1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-14 11:54:57 +00:00

Services: Use default execpromises parameter to pledge(..)

This commit is contained in:
Brian Gianforcaro 2022-04-03 16:15:41 -07:00 committed by Brian Gianforcaro
parent 9cfd520bb8
commit 09fe9b546f
2 changed files with 2 additions and 2 deletions

View file

@ -15,7 +15,7 @@
ErrorOr<int> serenity_main(Main::Arguments arguments) ErrorOr<int> serenity_main(Main::Arguments arguments)
{ {
TRY(Core::System::pledge("stdio unix inet id accept", nullptr)); TRY(Core::System::pledge("stdio unix inet id accept"));
TRY(Core::System::unveil(nullptr, nullptr)); TRY(Core::System::unveil(nullptr, nullptr));
int port = 7; int port = 7;

View file

@ -16,7 +16,7 @@ ErrorOr<int> serenity_main(Main::Arguments)
{ {
Core::EventLoop loop; Core::EventLoop loop;
TRY(Core::System::pledge("unix rpath wpath stdio sendfd recvfd", nullptr)); TRY(Core::System::pledge("unix rpath wpath stdio sendfd recvfd"));
TRY(Core::System::unveil(SPICE_DEVICE, "rw")); TRY(Core::System::unveil(SPICE_DEVICE, "rw"));
TRY(Core::System::unveil("/tmp/portal/clipboard", "rw")); TRY(Core::System::unveil("/tmp/portal/clipboard", "rw"));
TRY(Core::System::unveil(nullptr, nullptr)); TRY(Core::System::unveil(nullptr, nullptr));