[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.59 and 1.60

version 1.59, 2012/06/18 13:16:42 version 1.60, 2012/07/10 11:53:01
Line 18 
Line 18 
   
 #include <sys/types.h>  #include <sys/types.h>
   
   #include <stdlib.h>
 #include <string.h>  #include <string.h>
 #include <time.h>  #include <time.h>
 #include <unistd.h>  #include <unistd.h>
Line 393 
Line 394 
                 TAILQ_FOREACH(s, &sg->sessions, gentry)                  TAILQ_FOREACH(s, &sg->sessions, gentry)
                         server_destroy_session(s);                          server_destroy_session(s);
                 TAILQ_REMOVE(&session_groups, sg, entry);                  TAILQ_REMOVE(&session_groups, sg, entry);
                 xfree(sg);                  free(sg);
         }          }
 }  }
   

Legend:
Removed from v.1.59  
changed lines
  Added in v.1.60