[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.64 and 1.65

version 1.64, 2004/08/11 21:44:31 version 1.65, 2005/05/24 17:32:43
Line 149 
Line 149 
                 l = len;                  l = len;
                 if (l > sizeof(buf))                  if (l > sizeof(buf))
                         l = sizeof(buf);                          l = sizeof(buf);
                 l = atomicio(read, auth->fd, buf, l);                  if (atomicio(read, auth->fd, buf, l) != l) {
                 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.64  
changed lines
  Added in v.1.65