diff options
-rw-r--r-- | Userland/Services/EchoServer/main.cpp | 5 | ||||
-rw-r--r-- | Userland/Utilities/bt.cpp | 5 |
2 files changed, 0 insertions, 10 deletions
diff --git a/Userland/Services/EchoServer/main.cpp b/Userland/Services/EchoServer/main.cpp index 4ae7a8b206..deb6d1aaee 100644 --- a/Userland/Services/EchoServer/main.cpp +++ b/Userland/Services/EchoServer/main.cpp @@ -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; diff --git a/Userland/Utilities/bt.cpp b/Userland/Utilities/bt.cpp index 6472bcb322..acd2c3e910 100644 --- a/Userland/Utilities/bt.cpp +++ b/Userland/Utilities/bt.cpp @@ -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; |