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

Diff for /src/usr.bin/tmux/cmd-detach-client.c between version 1.15 and 1.16

version 1.15, 2013/10/10 12:28:08 version 1.16, 2013/10/15 00:15:11
Line 71 
Line 71 
                 if (args_has(args, 'a')) {                  if (args_has(args, 'a')) {
                         for (i = 0; i < ARRAY_LENGTH(&clients); i++) {                          for (i = 0; i < ARRAY_LENGTH(&clients); i++) {
                                 c2 = ARRAY_ITEM(&clients, i);                                  c2 = ARRAY_ITEM(&clients, i);
                                 if (c2 == NULL || c == c2)                                  if (c2 == NULL || c2->session == NULL ||
                                       c2 == c)
                                         continue;                                          continue;
                                 server_write_client(c2, msgtype,                                  server_write_client(c2, msgtype,
                                     c2->session->name,                                      c2->session->name,

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