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

Diff for /src/usr.bin/ssh/authfd.c between version 1.38 and 1.39

version 1.38, 2001/03/06 00:33:03 version 1.39, 2001/04/05 10:42:48
Line 119 
Line 119 
         while (len > 0) {          while (len > 0) {
                 l = read(auth->fd, buf + 4 - len, len);                  l = read(auth->fd, buf + 4 - len, len);
                 if (l == -1 && (errno == EAGAIN || errno == EINTR))                  if (l == -1 && (errno == EAGAIN || errno == EINTR))
                         continue;                          continue;
                 if (l <= 0) {                  if (l <= 0) {
                         error("Error reading response length from authentication socket.");                          error("Error reading response length from authentication socket.");
                         return 0;                          return 0;
Line 140 
Line 140 
                         l = sizeof(buf);                          l = sizeof(buf);
                 l = read(auth->fd, buf, l);                  l = read(auth->fd, buf, l);
                 if (l == -1 && (errno == EAGAIN || errno == EINTR))                  if (l == -1 && (errno == EAGAIN || errno == EINTR))
                         continue;                          continue;
                 if (l <= 0) {                  if (l <= 0) {
                         error("Error reading response from authentication socket.");                          error("Error reading response from authentication socket.");
                         return 0;                          return 0;

Legend:
Removed from v.1.38  
changed lines
  Added in v.1.39