Lines Matching refs:tmp_dst
716 char *tmp_dst = NULL; in process_put() local
725 tmp_dst = xstrdup(dst); in process_put()
726 tmp_dst = sftp_make_absolute(tmp_dst, pwd); in process_put()
738 if (tmp_dst != NULL) in process_put()
739 dst_is_dir = sftp_remote_is_dir(conn, tmp_dst); in process_put()
742 if (g.gl_matchc > 1 && tmp_dst && !dst_is_dir) { in process_put()
744 "\"%s\" is not a directory", tmp_dst); in process_put()
766 if (g.gl_matchc == 1 && tmp_dst) { in process_put()
769 abs_dst = sftp_path_append(tmp_dst, filename); in process_put()
771 abs_dst = xstrdup(tmp_dst); in process_put()
772 } else if (tmp_dst) { in process_put()
773 abs_dst = sftp_path_append(tmp_dst, filename); in process_put()
803 free(tmp_dst); in process_put()