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

Diff for /src/usr.bin/ssh/channels.c between version 1.79 and 1.80

version 1.79, 2000/12/29 22:19:13 version 1.80, 2001/01/08 22:03:23
Line 1737 
Line 1737 
                         error("socket: %.100s", strerror(errno));                          error("socket: %.100s", strerror(errno));
                         continue;                          continue;
                 }                  }
                 if (fcntl(sock, F_SETFL, O_NDELAY) < 0)                  if (fcntl(sock, F_SETFL, O_NONBLOCK) < 0)
                         fatal("connect_to: F_SETFL: %s", strerror(errno));                          fatal("connect_to: F_SETFL: %s", strerror(errno));
                 /* Connect to the host/port. */                  /* Connect to the host/port. */
                 if (connect(sock, ai->ai_addr, ai->ai_addrlen) < 0 &&                  if (connect(sock, ai->ai_addr, ai->ai_addrlen) < 0 &&

Legend:
Removed from v.1.79  
changed lines
  Added in v.1.80