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

Userland: Remove no-longer-needed unveil()'s of /tmp/rpc

This commit is contained in:
Andreas Kling 2021-05-13 22:48:02 +02:00
parent a03879f8dd
commit 04d78adaf7
2 changed files with 0 additions and 10 deletions

View file

@ -21,11 +21,6 @@ int main(int argc, char** argv)
return 1;
}
if (unveil("/tmp/rpc", "rwc") < 0) {
perror("unveil");
return 1;
}
if (unveil(nullptr, nullptr) < 0) {
perror("unveil");
return 1;

View file

@ -23,11 +23,6 @@ int main(int argc, char** argv)
return 1;
}
if (unveil("/tmp/rpc", "crw") < 0) {
perror("unveil");
return 1;
}
if (unveil("/tmp/portal/symbol", "rw") < 0) {
perror("unveil");
return 1;