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

Diff for /src/usr.bin/tmux/server.c between version 1.172 and 1.173

version 1.172, 2017/07/03 08:16:03 version 1.173, 2017/07/09 22:33:09
Line 249 
Line 249 
         }          }
   
         RB_FOREACH_SAFE(s, sessions, &sessions, s1)          RB_FOREACH_SAFE(s, sessions, &sessions, s1)
                 session_destroy(s);                  session_destroy(s, __func__);
 }  }
   
 /* Update socket execute permissions based on whether sessions are attached. */  /* Update socket execute permissions based on whether sessions are attached. */
Line 347 
Line 347 
 {  {
         int     fd;          int     fd;
   
           log_debug("%s: %s", __func__, strsignal(sig));
         switch (sig) {          switch (sig) {
         case SIGTERM:          case SIGTERM:
                 server_exit = 1;                  server_exit = 1;

Legend:
Removed from v.1.172  
changed lines
  Added in v.1.173