[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.51.2.1 and 1.51.2.2

version 1.51.2.1, 2005/03/10 16:28:27 version 1.51.2.2, 2005/06/05 02:22:39
Line 856 
Line 856 
                 debug3("Received reply T:%u I:%u R:%d", type, id, max_req);                  debug3("Received reply T:%u I:%u R:%d", type, id, max_req);
   
                 /* Find the request in our queue */                  /* Find the request in our queue */
                 for(req = TAILQ_FIRST(&requests);                  for (req = TAILQ_FIRST(&requests);
                     req != NULL && req->id != id;                      req != NULL && req->id != id;
                     req = TAILQ_NEXT(req, tq))                      req = TAILQ_NEXT(req, tq))
                         ;                          ;
Line 1105 
Line 1105 
                         debug3("SSH2_FXP_STATUS %d", status);                          debug3("SSH2_FXP_STATUS %d", status);
   
                         /* Find the request in our queue */                          /* Find the request in our queue */
                         for(ack = TAILQ_FIRST(&acks);                          for (ack = TAILQ_FIRST(&acks);
                             ack != NULL && ack->id != r_id;                              ack != NULL && ack->id != r_id;
                             ack = TAILQ_NEXT(ack, tq))                              ack = TAILQ_NEXT(ack, tq))
                                 ;                                  ;

Legend:
Removed from v.1.51.2.1  
changed lines
  Added in v.1.51.2.2