Lines Matching refs:tmp_dst
737 char *tmp_dst = NULL; in process_put() local
746 tmp_dst = xstrdup(dst); in process_put()
747 tmp_dst = sftp_make_absolute(tmp_dst, pwd); in process_put()
759 if (tmp_dst != NULL) in process_put()
760 dst_is_dir = sftp_remote_is_dir(conn, tmp_dst); in process_put()
763 if (g.gl_matchc > 1 && tmp_dst && !dst_is_dir) { in process_put()
765 "\"%s\" is not a directory", tmp_dst); in process_put()
787 if (g.gl_matchc == 1 && tmp_dst) { in process_put()
790 abs_dst = sftp_path_append(tmp_dst, filename); in process_put()
792 abs_dst = xstrdup(tmp_dst); in process_put()
793 } else if (tmp_dst) { in process_put()
794 abs_dst = sftp_path_append(tmp_dst, filename); in process_put()
824 free(tmp_dst); in process_put()