Lines Matching full:oldpath
769 do_rename(struct sftp_conn *conn, char *oldpath, char *newpath)
786 buffer_put_cstring(&msg, oldpath);
791 "SSH2_FXP_RENAME", oldpath, newpath);
796 error("Couldn't rename file \"%s\" to \"%s\": %s", oldpath,
803 do_hardlink(struct sftp_conn *conn, char *oldpath, char *newpath)
820 buffer_put_cstring(&msg, oldpath);
824 oldpath, newpath);
829 error("Couldn't link file \"%s\" to \"%s\": %s", oldpath,
836 do_symlink(struct sftp_conn *conn, char *oldpath, char *newpath)
852 buffer_put_cstring(&msg, oldpath);
855 debug3("Sent message SSH2_FXP_SYMLINK \"%s\" -> \"%s\"", oldpath,
861 error("Couldn't symlink file \"%s\" to \"%s\": %s", oldpath,