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

Diff for /src/usr.bin/tmux/server-fn.c between version 1.42 and 1.43

version 1.42, 2010/09/26 20:43:30 version 1.43, 2010/10/05 17:15:21
Line 368 
Line 368 
         s_out = NULL;          s_out = NULL;
         for (i = 0; i < ARRAY_LENGTH(&sessions); i++) {          for (i = 0; i < ARRAY_LENGTH(&sessions); i++) {
                 s_loop = ARRAY_ITEM(&sessions, i);                  s_loop = ARRAY_ITEM(&sessions, i);
                 if (s_loop == s)                  if (s_loop == NULL || s_loop == s)
                         continue;                          continue;
                 if (s_out == NULL ||                  if (s_out == NULL ||
                     timercmp(&s_loop->activity_time, &s_out->activity_time, <))                      timercmp(&s_loop->activity_time, &s_out->activity_time, <))

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