[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.157 and 1.158

version 1.157, 2021/11/06 10:13:39 version 1.158, 2022/01/01 01:55:30
Line 321 
Line 321 
         return handle;          return handle;
 }  }
   
 /* XXX returing &static is error-prone. Refactor to fill *Attrib argument */  /* XXX returning &static is error-prone. Refactor to fill *Attrib argument */
 static Attrib *  static Attrib *
 get_decode_stat(struct sftp_conn *conn, u_int expected_id, int quiet)  get_decode_stat(struct sftp_conn *conn, u_int expected_id, int quiet)
 {  {
Line 361 
Line 361 
                 sshbuf_free(msg);                  sshbuf_free(msg);
                 return NULL;                  return NULL;
         }          }
         debug3("Recevied stat reply T:%u I:%u F:0x%04x M:%05o",          debug3("Received stat reply T:%u I:%u F:0x%04x M:%05o",
             type, id, a.flags, a.perm);              type, id, a.flags, a.perm);
         sshbuf_free(msg);          sshbuf_free(msg);
   

Legend:
Removed from v.1.157  
changed lines
  Added in v.1.158