[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.19 and 1.20

version 1.19, 2009/08/11 19:32:25 version 1.20, 2009/08/11 22:34:17
Line 110 
Line 110 
                 }                  }
         }          }
         ARRAY_ADD(&clients, c);          ARRAY_ADD(&clients, c);
           log_debug("new client %d", fd);
 }  }
   
 /* Find client index. */  /* Find client index. */
Line 257 
Line 258 
         time_t           now, last;          time_t           now, last;
   
         siginit();          siginit();
           log_debug("server socket is %d", srv_fd);
   
         last = time(NULL);          last = time(NULL);
   
Line 901 
Line 903 
                 if (ARRAY_ITEM(&clients, i) == c)                  if (ARRAY_ITEM(&clients, i) == c)
                         ARRAY_SET(&clients, i, NULL);                          ARRAY_SET(&clients, i, NULL);
         }          }
           log_debug("lost client %d", c->ibuf.fd);
   
         tty_free(&c->tty);          tty_free(&c->tty);
   

Legend:
Removed from v.1.19  
changed lines
  Added in v.1.20