diff --git a/gui/wind/main.cpp b/gui/wind/main.cpp index f00263da..41732a8f 100644 --- a/gui/wind/main.cpp +++ b/gui/wind/main.cpp @@ -58,7 +58,7 @@ Result luna_main(int argc, char** argv) { srand((unsigned)time(NULL)); - TRY(os::Security::pledge("stdio rpath wpath cpath unix proc exec tty id", NULL)); + TRY(os::Security::pledge("stdio rpath wpath cpath unix tty id", NULL)); StringView socket_path = "/tmp/wind.sock"; StringView system_socket_path = "/tmp/wsys.sock"; @@ -128,7 +128,7 @@ Result luna_main(int argc, char** argv) TRY(fds.try_append({ .fd = server->fd(), .events = POLLIN, .revents = 0 })); TRY(fds.try_append({ .fd = system_server->fd(), .events = POLLIN, .revents = 0 })); - TRY(os::Security::pledge("stdio rpath wpath cpath unix proc exec", NULL)); + TRY(os::Security::pledge("stdio rpath wpath cpath unix", NULL)); while (1) {