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

Diff for /src/usr.bin/tmux/server-client.c between version 1.232 and 1.233

version 1.232, 2017/05/16 12:57:26 version 1.233, 2017/05/29 20:37:30
Line 49 
Line 49 
 static void     server_client_dispatch_identify(struct client *, struct imsg *);  static void     server_client_dispatch_identify(struct client *, struct imsg *);
 static void     server_client_dispatch_shell(struct client *);  static void     server_client_dispatch_shell(struct client *);
   
   /* Number of attached clients. */
   u_int
   server_client_how_many(void)
   {
           struct client   *c;
           u_int            n;
   
           n = 0;
           TAILQ_FOREACH(c, &clients, entry) {
                   if (c->session != NULL && (~c->flags & CLIENT_DETACHING))
                           n++;
           }
           return (n);
   }
   
 /* Identify mode callback. */  /* Identify mode callback. */
 static void  static void
 server_client_callback_identify(__unused int fd, __unused short events,  server_client_callback_identify(__unused int fd, __unused short events,

Legend:
Removed from v.1.232  
changed lines
  Added in v.1.233