mirror of
https://github.com/tmux/tmux.git
synced 2024-12-24 18:38:48 +00:00
Fix exit message if creating socket fails.
This commit is contained in:
parent
938130bc69
commit
422fcd294a
6
server.c
6
server.c
@ -228,10 +228,10 @@ server_start(struct tmuxproc *client, int flags, struct event_base *base,
|
|||||||
|
|
||||||
if (cause != NULL) {
|
if (cause != NULL) {
|
||||||
if (c != NULL) {
|
if (c != NULL) {
|
||||||
cmdq_append(c, cmdq_get_error(cause));
|
c->exit_message = cause;
|
||||||
c->flags |= CLIENT_EXIT;
|
c->flags |= CLIENT_EXIT;
|
||||||
}
|
} else
|
||||||
free(cause);
|
free(cause);
|
||||||
}
|
}
|
||||||
|
|
||||||
evtimer_set(&server_ev_tidy, server_tidy_event, NULL);
|
evtimer_set(&server_ev_tidy, server_tidy_event, NULL);
|
||||||
|
Loading…
Reference in New Issue
Block a user