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

Diff for /src/usr.bin/tmux/tmux.c between version 1.146 and 1.147

version 1.146, 2015/10/25 07:48:16 version 1.147, 2015/10/27 13:23:24
Line 29 
Line 29 
 #include <pwd.h>  #include <pwd.h>
 #include <stdlib.h>  #include <stdlib.h>
 #include <string.h>  #include <string.h>
   #include <time.h>
 #include <unistd.h>  #include <unistd.h>
   
 #include "tmux.h"  #include "tmux.h"
Line 346 
Line 347 
                 exit(1);                  exit(1);
         }          }
         free(path);          free(path);
   
         /* Set process title. */  
         setproctitle("%s (%s)", __progname, socket_path);  
   
         /* Pass control to the client. */          /* Pass control to the client. */
         exit(client_main(event_init(), argc, argv, flags));          exit(client_main(event_init(), argc, argv, flags));

Legend:
Removed from v.1.146  
changed lines
  Added in v.1.147