diff options
Diffstat (limited to 'Servers/WindowServer/main.cpp')
-rw-r--r-- | Servers/WindowServer/main.cpp | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/Servers/WindowServer/main.cpp b/Servers/WindowServer/main.cpp index 6d81617260..e2c688f932 100644 --- a/Servers/WindowServer/main.cpp +++ b/Servers/WindowServer/main.cpp @@ -48,11 +48,6 @@ int main(int, char**) return 1; } - if (unveil("/etc/passwd", "r") < 0) { - perror("unveil"); - return 1; - } - if (unveil("/tmp", "cw") < 0) { perror("unveil"); return 1; @@ -110,11 +105,6 @@ int main(int, char**) return 1; } - if (unveil("/bin", "x") < 0) { - perror("unveil"); - return 1; - } - if (unveil(nullptr, nullptr) < 0) { perror("unveil"); return 1; |