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

Diff for /src/usr.bin/tmux/session.c between version 1.30 and 1.31

version 1.30, 2011/01/25 22:31:50 version 1.31, 2011/04/06 21:51:31
Line 164 
Line 164 
         RB_INSERT(sessions, &dead_sessions, s);          RB_INSERT(sessions, &dead_sessions, s);
 }  }
   
   /* Check a session name is valid: not empty and no colons. */
   int
   session_check_name(const char *name)
   {
           return (*name != '\0' && strchr(name, ':') == NULL);
   }
   
 /* Update session active time. */  /* Update session active time. */
 void  void
 session_update_activity(struct session *s)  session_update_activity(struct session *s)

Legend:
Removed from v.1.30  
changed lines
  Added in v.1.31