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

Diff for /src/usr.bin/tmux/server.c between version 1.192 and 1.193

version 1.192, 2020/05/16 16:30:59 version 1.193, 2020/06/01 09:43:01
Line 295 
Line 295 
                 if (c->flags & CLIENT_SUSPENDED)                  if (c->flags & CLIENT_SUSPENDED)
                         server_client_lost(c);                          server_client_lost(c);
                 else {                  else {
                         if (c->flags & CLIENT_ATTACHED)                          c->flags |= CLIENT_EXIT;
                                 notify_client("client-detached", c);                          c->exit_type = CLIENT_EXIT_SHUTDOWN;
                         proc_send(c->peer, MSG_SHUTDOWN, -1, NULL, 0);  
                 }                  }
                 c->session = NULL;                  c->session = NULL;
         }          }

Legend:
Removed from v.1.192  
changed lines
  Added in v.1.193