diff options
author | Ryo Nakamura <upa@haeena.net> | 2022-10-29 23:36:12 +0900 |
---|---|---|
committer | Ryo Nakamura <upa@haeena.net> | 2022-10-29 23:36:12 +0900 |
commit | ff697aa514b13cbb8105f2f3c04c1889820796d9 (patch) | |
tree | b60df94dea916a2ae3b13731e94d45d85ed380fd /src/ssh.h | |
parent | 47f6983148047975e00f48b1ef77f8c4c7f2fd73 (diff) |
fix path handling
Diffstat (limited to 'src/ssh.h')
-rw-r--r-- | src/ssh.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -23,6 +23,7 @@ sftp_session ssh_make_sftp_session(char *sshdst, struct ssh_opts *opts); void ssh_sftp_close(sftp_session sftp); #define sftp_ssh(sftp) (sftp)->session +#define sftp_get_ssh_error(sftp) ssh_get_error(sftp_ssh(sftp)) /* wrapping multiple sftp_read|write */ int sftp_write2(sftp_file sf, const void *buf, size_t len, size_t sftp_buf_sz); |