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

Diff for /src/usr.bin/tmux/cmd-attach-session.c between version 1.20 and 1.21

version 1.20, 2012/05/22 10:56:48 version 1.21, 2012/07/10 11:53:01
Line 18 
Line 18 
   
 #include <sys/types.h>  #include <sys/types.h>
   
   #include <stdlib.h>
   
 #include "tmux.h"  #include "tmux.h"
   
 /*  /*
Line 81 
Line 83 
         } else {          } else {
                 if (server_client_open(ctx->cmdclient, s, &cause) != 0) {                  if (server_client_open(ctx->cmdclient, s, &cause) != 0) {
                         ctx->error(ctx, "open terminal failed: %s", cause);                          ctx->error(ctx, "open terminal failed: %s", cause);
                         xfree(cause);                          free(cause);
                         return (-1);                          return (-1);
                 }                  }
   

Legend:
Removed from v.1.20  
changed lines
  Added in v.1.21