[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.17 and 1.18

version 1.17, 2009/09/02 23:49:25 version 1.18, 2009/09/20 14:58:12
Line 74 
Line 74 
         }          }
   
         if ((fd = socket(AF_UNIX, SOCK_STREAM, 0)) == -1)          if ((fd = socket(AF_UNIX, SOCK_STREAM, 0)) == -1)
                 fatal("socket");                  fatal("socket failed");
   
         if (connect(fd, (struct sockaddr *) &sa, SUN_LEN(&sa)) == -1) {          if (connect(fd, (struct sockaddr *) &sa, SUN_LEN(&sa)) == -1) {
                 if (errno == ECONNREFUSED) {                  if (errno == ECONNREFUSED) {

Legend:
Removed from v.1.17  
changed lines
  Added in v.1.18