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

Diff for /src/usr.bin/tmux/client.c between version 1.76 and 1.77

version 1.76, 2013/11/13 20:43:36 version 1.77, 2014/01/09 14:05:55
Line 232 
Line 232 
         /* Initialise the client socket and start the server. */          /* Initialise the client socket and start the server. */
         fd = client_connect(socket_path, cmdflags & CMD_STARTSERVER);          fd = client_connect(socket_path, cmdflags & CMD_STARTSERVER);
         if (fd == -1) {          if (fd == -1) {
                 fprintf(stderr, "failed to connect to server\n");                  fprintf(stderr, "failed to connect to server: %s\n",
                       strerror(errno));
                 return (1);                  return (1);
         }          }
   

Legend:
Removed from v.1.76  
changed lines
  Added in v.1.77