[BACK]Return to client.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / tmux

Diff for /src/usr.bin/tmux/client.c between version 1.153 and 1.154

version 1.153, 2021/02/11 09:39:29 version 1.154, 2021/02/12 06:52:48
Line 553 
Line 553 
 client_dispatch(struct imsg *imsg, __unused void *arg)  client_dispatch(struct imsg *imsg, __unused void *arg)
 {  {
         if (imsg == NULL) {          if (imsg == NULL) {
                 client_exitreason = CLIENT_EXIT_LOST_SERVER;                  if (!client_exitflag) {
                 client_exitval = 1;                          client_exitreason = CLIENT_EXIT_LOST_SERVER;
                           client_exitval = 1;
                   }
                 proc_exit(client_proc);                  proc_exit(client_proc);
                 return;                  return;
         }          }

Legend:
Removed from v.1.153  
changed lines
  Added in v.1.154