mirror of
https://github.com/tmux/tmux.git
synced 2025-03-22 12:58:48 +00:00
Do not care about the server socket closing if exiting anyway.
This commit is contained in:
parent
2b58c226db
commit
632636dba5
6
client.c
6
client.c
@ -553,8 +553,10 @@ static void
|
||||
client_dispatch(struct imsg *imsg, __unused void *arg)
|
||||
{
|
||||
if (imsg == NULL) {
|
||||
client_exitreason = CLIENT_EXIT_LOST_SERVER;
|
||||
client_exitval = 1;
|
||||
if (!client_exitflag) {
|
||||
client_exitreason = CLIENT_EXIT_LOST_SERVER;
|
||||
client_exitval = 1;
|
||||
}
|
||||
proc_exit(client_proc);
|
||||
return;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user