1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 01:47:34 +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

@ -44,7 +44,7 @@ hostent* gethostbyname(const char* name)
sockaddr_un address;
address.sun_family = AF_LOCAL;
strcpy(address.sun_path, "/tmp/.DNSLookupServer-socket");
strcpy(address.sun_path, "/tmp/.LookupServer-socket");
int retries = 3;
int rc = 0;