mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 00:57:43 +00:00
LibCore: Use ';' to split socket path in SOCKET_TAKEOVER
This allow to use socket path with spaces inside. Closes #16436.
This commit is contained in:
parent
944e17ce9e
commit
43ff500a80
3 changed files with 4 additions and 4 deletions
|
@ -202,7 +202,7 @@ void Service::spawn(int socket_fd)
|
|||
|
||||
int new_fd = dup(socket.fd);
|
||||
if (i != 0)
|
||||
builder.append(' ');
|
||||
builder.append(';');
|
||||
builder.appendff("{}:{}", socket.path, new_fd);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue