Home
last modified time | relevance | path

Searched refs:abs_dst (Results 1 – 3 of 3) sorted by relevance

/freebsd/crypto/openssh/
H A Dscp.c1340 char *target = NULL, *filename = NULL, *abs_dst = NULL; in source_sftp() local
1368 abs_dst = sftp_path_append(target, filename); in source_sftp()
1370 abs_dst = target; in source_sftp()
1373 debug3_f("copying local %s to remote %s", src, abs_dst); in source_sftp()
1376 if (sftp_upload_dir(conn, src, abs_dst, pflag, in source_sftp()
1381 } else if (sftp_upload(conn, src, abs_dst, pflag, 0, 0, 1) != 0) { in source_sftp()
1386 free(abs_dst); in source_sftp()
1555 char *abs_dst = NULL; in sink_sftp() local
1626 abs_dst = sftp_path_append(dst, filename); in sink_sftp()
1628 abs_dst = xstrdup(dst); in sink_sftp()
[all …]
H A Dsftp.c652 char *filename, *abs_src = NULL, *abs_dst = NULL, *tmp = NULL; in process_get() local
692 abs_dst = sftp_path_append(dst, filename); in process_get()
694 abs_dst = xstrdup(dst); in process_get()
697 abs_dst = sftp_path_append(dst, filename); in process_get()
699 abs_dst = xstrdup(filename); in process_get()
706 g.gl_pathv[i], abs_dst); in process_get()
709 g.gl_pathv[i], abs_dst); in process_get()
713 if (sftp_download_dir(conn, g.gl_pathv[i], abs_dst, in process_get()
718 if (sftp_download(conn, g.gl_pathv[i], abs_dst, NULL, in process_get()
723 free(abs_dst); in process_get()
[all …]
H A DChangeLog5856 It allocates abs_dst inside a loop but only frees it on exit, so free