commit b692d8bd5b24045832657a01b7ad6fa15793ef68 from: Omar Polo date: Fri Jun 23 15:52:04 2023 UTC drop `proc' pledge in the main process unlike the name might suggest, proc_kill() doesn't use kill(2) so proc is not needed. commit - 5dad390015970eb1e35f6e6fd9f8f28bf6e6db0e commit + b692d8bd5b24045832657a01b7ad6fa15793ef68 blob - ab8ddf80205955b0483c260f0019e8faf19ee5b1 blob + 7d27865d6b3a5398e0f682a64a001a2ad76dca53 --- sandbox.c +++ sandbox.c @@ -24,7 +24,7 @@ void sandbox_main_process(void) { - if (pledge("stdio rpath inet dns sendfd proc", NULL) == -1) + if (pledge("stdio rpath inet dns sendfd", NULL) == -1) fatal("pledge"); }