[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.119 and 1.120

version 1.119, 2019/03/12 20:02:47 version 1.120, 2019/04/17 14:37:48
Line 368 
Line 368 
         else {          else {
                 TAILQ_FOREACH_SAFE(s, &sg->sessions, gentry, s1) {                  TAILQ_FOREACH_SAFE(s, &sg->sessions, gentry, s1) {
                         server_destroy_session(s);                          server_destroy_session(s);
                         session_destroy(s, __func__);                          session_destroy(s, 1, __func__);
                 }                  }
         }          }
 }  }
Line 435 
Line 435 
                 if (s->attached != 0)                  if (s->attached != 0)
                         continue;                          continue;
                 if (options_get_number (s->options, "destroy-unattached"))                  if (options_get_number (s->options, "destroy-unattached"))
                         session_destroy(s, __func__);                          session_destroy(s, 1, __func__);
         }          }
 }  }
   

Legend:
Removed from v.1.119  
changed lines
  Added in v.1.120