diff options
Diffstat (limited to 'Userland/Utilities/ping.cpp')
-rw-r--r-- | Userland/Utilities/ping.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Utilities/ping.cpp b/Userland/Utilities/ping.cpp index a960c73dc5..ab398f42d9 100644 --- a/Userland/Utilities/ping.cpp +++ b/Userland/Utilities/ping.cpp @@ -61,7 +61,7 @@ static const char* host; int main(int argc, char** argv) { - if (pledge("stdio id inet dns sigaction", nullptr) < 0) { + if (pledge("stdio id inet unix sigaction", nullptr) < 0) { perror("pledge"); return 1; } @@ -81,7 +81,7 @@ int main(int argc, char** argv) return 1; } - if (pledge("stdio inet dns sigaction", nullptr) < 0) { + if (pledge("stdio inet unix sigaction", nullptr) < 0) { perror("pledge"); return 1; } |