[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.14 and 1.15

version 1.14, 2009/11/04 23:12:43 version 1.15, 2009/11/04 23:29:42
Line 120 
Line 120 
         if (c->title != NULL)          if (c->title != NULL)
                 xfree(c->title);                  xfree(c->title);
   
           evtimer_del(&c->identify_timer);
   
         if (c->message_string != NULL)          if (c->message_string != NULL)
                 xfree(c->message_string);                  xfree(c->message_string);
           evtimer_del(&c->message_timer);
   
         if (c->prompt_string != NULL)          if (c->prompt_string != NULL)
                 xfree(c->prompt_string);                  xfree(c->prompt_string);
Line 447 
Line 450 
   
         if (gettimeofday(&tv, NULL) != 0)          if (gettimeofday(&tv, NULL) != 0)
                 fatal("gettimeofday failed");                  fatal("gettimeofday failed");
   
         if (c->flags & CLIENT_IDENTIFY && timercmp(&tv, &c->identify_timer, >))  
                 server_clear_identify(c);  
   
         if (c->message_string != NULL && timercmp(&tv, &c->message_timer, >))  
                 status_message_clear(c);  
   
         if (c->message_string != NULL || c->prompt_string != NULL) {          if (c->message_string != NULL || c->prompt_string != NULL) {
                 /*                  /*

Legend:
Removed from v.1.14  
changed lines
  Added in v.1.15