[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.101 and 1.102

version 1.101, 2013/07/25 00:56:51 version 1.102, 2013/08/08 05:04:03
Line 761 
Line 761 
 }  }
   
 int  int
 do_rename(struct sftp_conn *conn, char *oldpath, char *newpath)  do_rename(struct sftp_conn *conn, char *oldpath, char *newpath,
       int force_legacy)
 {  {
         Buffer msg;          Buffer msg;
         u_int status, id;          u_int status, id;
           int use_ext = (conn->exts & SFTP_EXT_POSIX_RENAME) && !force_legacy;
   
         buffer_init(&msg);          buffer_init(&msg);
   
         /* Send rename request */          /* Send rename request */
         id = conn->msg_id++;          id = conn->msg_id++;
         if ((conn->exts & SFTP_EXT_POSIX_RENAME)) {          if (use_ext) {
                 buffer_put_char(&msg, SSH2_FXP_EXTENDED);                  buffer_put_char(&msg, SSH2_FXP_EXTENDED);
                 buffer_put_int(&msg, id);                  buffer_put_int(&msg, id);
                 buffer_put_cstring(&msg, "posix-rename@openssh.com");                  buffer_put_cstring(&msg, "posix-rename@openssh.com");
Line 782 
Line 784 
         buffer_put_cstring(&msg, newpath);          buffer_put_cstring(&msg, newpath);
         send_msg(conn, &msg);          send_msg(conn, &msg);
         debug3("Sent message %s \"%s\" -> \"%s\"",          debug3("Sent message %s \"%s\" -> \"%s\"",
             (conn->exts & SFTP_EXT_POSIX_RENAME) ? "posix-rename@openssh.com" :              use_ext ? "posix-rename@openssh.com" : "SSH2_FXP_RENAME",
             "SSH2_FXP_RENAME", oldpath, newpath);              oldpath, newpath);
         buffer_free(&msg);          buffer_free(&msg);
   
         status = get_status(conn, id);          status = get_status(conn, id);

Legend:
Removed from v.1.101  
changed lines
  Added in v.1.102