Searched refs:abs_src (Results 1 – 2 of 2) sorted by relevance
/openbsd/usr.bin/ssh/ |
H A D | scp.c | 1493 char *abs_src = NULL; in sink_sftp() local 1506 if ((abs_src = prepare_remote_path(conn, src)) == NULL) { in sink_sftp() 1511 debug3_f("copying remote %s to local %s", abs_src, dst); in sink_sftp() 1512 if ((r = sftp_glob(conn, abs_src, GLOB_NOCHECK|GLOB_MARK, in sink_sftp() 1586 free(abs_src); in sink_sftp() 1925 char *abs_src = NULL, *tmp = NULL; in throughlocal_sftp() local 1932 if ((abs_src = prepare_remote_path(from, src)) == NULL || in throughlocal_sftp() 1944 debug3_f("copying remote %s to remote %s", abs_src, target); in throughlocal_sftp() 1945 if ((r = sftp_glob(from, abs_src, GLOB_NOCHECK|GLOB_MARK, in throughlocal_sftp() 1999 free(abs_src); in throughlocal_sftp()
|
H A D | sftp.c | 631 char *filename, *abs_src = NULL, *abs_dst = NULL, *tmp = NULL; in process_get() local 635 abs_src = make_absolute_pwd_glob(xstrdup(src), pwd); in process_get() 638 debug3("Looking up %s", abs_src); in process_get() 639 if ((r = sftp_glob(conn, abs_src, GLOB_MARK, NULL, &g)) != 0) { in process_get() 641 error("Too many matches for \"%s\".", abs_src); in process_get() 643 error("File \"%s\" not found.", abs_src); in process_get() 707 free(abs_src); in process_get()
|