1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 13:28:11 +00:00

Rename DNSLookupServer => LookupServer.

This commit is contained in:
Andreas Kling 2019-03-20 04:26:30 +01:00
parent 67009cee8e
commit 9120b05a40
10 changed files with 21 additions and 22 deletions

View file

@ -85,9 +85,9 @@ VFS* vfs;
int error;
auto* dns_lookup_server_process = Process::create_user_process("/bin/DNSLookupServer", (uid_t)100, (gid_t)100, (pid_t)0, error, { }, { }, tty0);
auto* dns_lookup_server_process = Process::create_user_process("/bin/LookupServer", (uid_t)100, (gid_t)100, (pid_t)0, error, { }, { }, tty0);
if (error != 0) {
dbgprintf("error spawning DNSLookupServer: %d\n", error);
dbgprintf("error spawning LookupServer: %d\n", error);
hang();
}