summaryrefslogtreecommitdiff
path: root/src/ssh.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ssh.h')
-rw-r--r--src/ssh.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ssh.h b/src/ssh.h
index 6e18cf5..905cd62 100644
--- a/src/ssh.h
+++ b/src/ssh.h
@@ -18,10 +18,10 @@ struct ssh_opts {
char *password; /* filled at the first connecting phase */
};
-/* ssh_make_sftp_session() creates sftp_session. sshdst accpets
+/* ssh_init_sftp_session() creates sftp_session. sshdst accpets
* user@hostname and hostname notations (by libssh).
*/
-sftp_session ssh_make_sftp_session(char *sshdst, struct ssh_opts *opts);
+sftp_session ssh_init_sftp_session(char *sshdst, struct ssh_opts *opts);
void ssh_sftp_close(sftp_session sftp);
#define sftp_ssh(sftp) (sftp)->session