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

Diff for /src/usr.bin/ssh/sftp-client.c between version 1.119 and 1.120

version 1.119, 2015/05/23 14:28:37 version 1.120, 2015/05/28 04:50:53
Line 1378 
Line 1378 
                             "server reordered requests", local_path);                              "server reordered requests", local_path);
                 }                  }
                 debug("truncating at %llu", (unsigned long long)highwater);                  debug("truncating at %llu", (unsigned long long)highwater);
                 ftruncate(local_fd, highwater);                  if (ftruncate(local_fd, highwater) == -1)
                           error("ftruncate \"%s\": %s", local_path,
                               strerror(errno));
         }          }
         if (read_error) {          if (read_error) {
                 error("Couldn't read from remote file \"%s\" : %s",                  error("Couldn't read from remote file \"%s\" : %s",

Legend:
Removed from v.1.119  
changed lines
  Added in v.1.120