[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.73 and 1.74

version 1.73, 2013/10/10 12:13:56 version 1.74, 2013/10/10 12:26:36
Line 56 
Line 56 
 }  }
   
 int  int
 server_write_client(  server_write_client(struct client *c, enum msgtype type, const void *buf,
     struct client *c, enum msgtype type, const void *buf, size_t len)      size_t len)
 {  {
         struct imsgbuf  *ibuf = &c->ibuf;          struct imsgbuf  *ibuf = &c->ibuf;
         int              error;          int              error;
Line 73 
Line 73 
 }  }
   
 void  void
 server_write_session(  server_write_session(struct session *s, enum msgtype type, const void *buf,
     struct session *s, enum msgtype type, const void *buf, size_t len)      size_t len)
 {  {
         struct client   *c;          struct client   *c;
         u_int            i;          u_int            i;

Legend:
Removed from v.1.73  
changed lines
  Added in v.1.74