Lines Matching refs:abs_dst
541 char *abs_dst = NULL; in process_get() local
580 abs_dst = path_append(dst, tmp); in process_get()
583 abs_dst = xstrdup(dst); in process_get()
585 abs_dst = path_append(dst, tmp); in process_get()
588 abs_dst = tmp; in process_get()
590 printf(gettext("Fetching %s to %s\n"), g.gl_pathv[i], abs_dst); in process_get()
591 if (do_download(conn, g.gl_pathv[i], abs_dst, pflag) == -1) in process_get()
593 xfree(abs_dst); in process_get()
594 abs_dst = NULL; in process_get()
607 char *abs_dst = NULL; in process_put() local
652 abs_dst = path_append(tmp_dst, tmp); in process_put()
655 abs_dst = xstrdup(tmp_dst); in process_put()
658 abs_dst = path_append(tmp_dst, tmp); in process_put()
661 abs_dst = make_absolute(tmp, pwd); in process_put()
663 printf(gettext("Uploading %s to %s\n"), g.gl_pathv[i], abs_dst); in process_put()
664 if (do_upload(conn, g.gl_pathv[i], abs_dst, pflag) == -1) in process_put()
669 if (abs_dst) in process_put()
670 xfree(abs_dst); in process_put()