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

Diff for /src/usr.bin/tmux/control.c between version 1.41 and 1.42

version 1.41, 2020/06/11 09:55:47 version 1.42, 2020/06/12 08:35:01
Line 569 
Line 569 
         }          }
   
         while (used != limit && !TAILQ_EMPTY(&cp->blocks)) {          while (used != limit && !TAILQ_EMPTY(&cp->blocks)) {
                   if (control_check_age(c, wp, cp)) {
                           if (message != NULL)
                                   evbuffer_free(message);
                           message = NULL;
                           break;
                   }
   
                 cb = TAILQ_FIRST(&cp->blocks);                  cb = TAILQ_FIRST(&cp->blocks);
                 if (cb->t < t)                  if (cb->t < t)
                         age = t - cb->t;                          age = t - cb->t;

Legend:
Removed from v.1.41  
changed lines
  Added in v.1.42