Searched refs:abs_dst (Results 1 – 2 of 2) sorted by relevance
| /freebsd/crypto/openssh/ |
| H A D | scp.c | 1326 char *target = NULL, *filename = NULL, *abs_dst = NULL; in source_sftp() local 1358 abs_dst = sftp_path_append(target, filename); in source_sftp() 1360 abs_dst = target; in source_sftp() 1363 debug3_f("copying local %s to remote %s", src, abs_dst); in source_sftp() 1366 if (sftp_upload_dir(conn, src, abs_dst, pflag, in source_sftp() 1371 } else if (sftp_upload(conn, src, abs_dst, pflag, 0, 0, 1) != 0) { in source_sftp() 1376 free(abs_dst); in source_sftp() 1545 char *abs_dst = NULL; in sink_sftp() local 1620 abs_dst = sftp_path_append(dst, filename); in sink_sftp() 1622 abs_dst = xstrdup(dst); in sink_sftp() [all …]
|
| H A D | sftp.c | 641 char *filename, *abs_src = NULL, *abs_dst = NULL, *tmp = NULL; in process_get() local 685 abs_dst = sftp_path_append(dst, filename); in process_get() 687 abs_dst = xstrdup(dst); in process_get() 690 abs_dst = sftp_path_append(dst, filename); in process_get() 692 abs_dst = xstrdup(filename); in process_get() 699 g.gl_pathv[i], abs_dst); in process_get() 702 g.gl_pathv[i], abs_dst); in process_get() 706 if (sftp_download_dir(conn, g.gl_pathv[i], abs_dst, in process_get() 711 if (sftp_download(conn, g.gl_pathv[i], abs_dst, NULL, in process_get() 716 free(abs_dst); in process_get() [all …]
|