ipc_client_timeout: Fix build when not on linux
Also moved the 'end' label because it is unused otherwise. Reported here: https://github.com/Airblader/i3/issues/233
This commit is contained in:
parent
08a53611f9
commit
37b879f4ad
|
@ -1414,12 +1414,14 @@ static void ipc_client_timeout(EV_P_ ev_timer *w, int revents) {
|
|||
}
|
||||
}
|
||||
cmdline = buf;
|
||||
#endif
|
||||
|
||||
end:
|
||||
if (cmdline) {
|
||||
ELOG("client %p with pid %d and cmdline '%s' on fd %d timed out, killing\n", client, peercred.pid, cmdline, client->fd);
|
||||
} else {
|
||||
}
|
||||
|
||||
end:
|
||||
#endif
|
||||
if (!cmdline) {
|
||||
ELOG("client %p on fd %d timed out, killing\n", client, client->fd);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue