1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 20:57:35 +00:00

LookupServer: Port to socket takeover

This commit is contained in:
Sergey Bugaev 2019-11-26 19:39:47 +03:00 committed by Andreas Kling
parent 821ed8367b
commit ab98969403
3 changed files with 3 additions and 2 deletions

View file

@ -30,7 +30,7 @@ static int connect_to_lookup_server()
sockaddr_un address;
address.sun_family = AF_LOCAL;
strcpy(address.sun_path, "/tmp/.LookupServer-socket");
strcpy(address.sun_path, "/tmp/portal/lookup");
int retries = 3;
int rc = 0;