[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.54 and 1.55

version 1.54, 2005/05/24 17:32:44 version 1.55, 2005/06/17 02:44:33
Line 311 
Line 311 
     SFTP_DIRENT ***dir)      SFTP_DIRENT ***dir)
 {  {
         Buffer msg;          Buffer msg;
         u_int type, id, handle_len, i, expected_id, ents = 0;          u_int count, type, id, handle_len, i, expected_id, ents = 0;
         char *handle;          char *handle;
   
         id = conn->msg_id++;          id = conn->msg_id++;
Line 335 
Line 335 
         }          }
   
         for (; !interrupted;) {          for (; !interrupted;) {
                 int count;  
   
                 id = expected_id = conn->msg_id++;                  id = expected_id = conn->msg_id++;
   
                 debug3("Sending SSH2_FXP_READDIR I:%u", id);                  debug3("Sending SSH2_FXP_READDIR I:%u", id);
Line 744 
Line 742 
         Attrib junk, *a;          Attrib junk, *a;
         Buffer msg;          Buffer msg;
         char *handle;          char *handle;
         int local_fd, status, num_req, max_req, write_error;          int local_fd, status, write_error;
         int read_error, write_errno;          int read_error, write_errno;
         u_int64_t offset, size;          u_int64_t offset, size;
         u_int handle_len, mode, type, id, buflen;          u_int handle_len, mode, type, id, buflen, num_req, max_req;
         off_t progress_counter;          off_t progress_counter;
         struct request {          struct request {
                 u_int id;                  u_int id;

Legend:
Removed from v.1.54  
changed lines
  Added in v.1.55