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

Diff for /src/usr.bin/tmux/server-client.c between version 1.339 and 1.340

version 1.339, 2020/05/16 16:07:55 version 1.340, 2020/05/16 16:16:07
Line 213 
Line 213 
         c->queue = cmdq_new();          c->queue = cmdq_new();
   
         c->tty.fd = -1;          c->tty.fd = -1;
   
         c->tty.sx = 80;          c->tty.sx = 80;
         c->tty.sy = 24;          c->tty.sy = 24;
   
Line 272 
Line 271 
 void  void
 server_client_lost(struct client *c)  server_client_lost(struct client *c)
 {  {
         struct client_file      *cf;          struct client_file      *cf, *cf1;
   
         c->flags |= CLIENT_DEAD;          c->flags |= CLIENT_DEAD;
   
Line 280 
Line 279 
         status_prompt_clear(c);          status_prompt_clear(c);
         status_message_clear(c);          status_message_clear(c);
   
         RB_FOREACH(cf, client_files, &c->files) {          RB_FOREACH_SAFE(cf, client_files, &c->files, cf1) {
                 cf->error = EINTR;                  cf->error = EINTR;
                 file_fire_done(cf);                  file_fire_done(cf);
         }          }
Line 2250 
Line 2249 
   
 }  }
   
 /*Get client flags. This is only flags useful to show to users. */  /* Get client flags. This is only flags useful to show to users. */
 const char *  const char *
 server_client_get_flags(struct client *c)  server_client_get_flags(struct client *c)
 {  {

Legend:
Removed from v.1.339  
changed lines
  Added in v.1.340