give the socket an invalid username to ensure it is unique

This commit is contained in:
Gunter Labes 2008-09-02 09:49:37 +00:00
parent 6365ec4411
commit 8b8b3e3c52

View file

@ -472,7 +472,7 @@ void server::run() {
// Process commands from the server socket/fifo
std::string admin_cmd;
if (input_.read_line(admin_cmd)) {
process_command(admin_cmd, "socket");
process_command(admin_cmd, "*socket*");
}
time_t now = time(NULL);