diff options
Diffstat (limited to 'Userland/Utilities/host.cpp')
-rw-r--r-- | Userland/Utilities/host.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Utilities/host.cpp b/Userland/Utilities/host.cpp index d77054b868..e3908472b4 100644 --- a/Userland/Utilities/host.cpp +++ b/Userland/Utilities/host.cpp @@ -34,7 +34,7 @@ int main(int argc, char** argv) { - if (pledge("stdio dns", nullptr) < 0) { + if (pledge("stdio unix", nullptr) < 0) { perror("pledge"); return 1; } |