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

Diff for /src/usr.bin/ssh/sftp-server.c between version 1.70 and 1.71

version 1.70, 2006/08/03 03:34:42 version 1.71, 2007/01/03 07:22:36
Line 658 
Line 658 
         debug("request %u: fstat \"%s\" (handle %u)",          debug("request %u: fstat \"%s\" (handle %u)",
             id, handle_to_name(handle), handle);              id, handle_to_name(handle), handle);
         fd = handle_to_fd(handle);          fd = handle_to_fd(handle);
         if (fd  >= 0) {          if (fd >= 0) {
                 ret = fstat(fd, &st);                  ret = fstat(fd, &st);
                 if (ret < 0) {                  if (ret < 0) {
                         status = errno_to_portable(errno);                          status = errno_to_portable(errno);

Legend:
Removed from v.1.70  
changed lines
  Added in v.1.71