summaryrefslogtreecommitdiffstats
path: root/include/libssh/libssh.h
diff options
context:
space:
mode:
authorAndreas Schneider <mail@cynapses.org>2009-10-04 10:10:19 +0200
committerAndreas Schneider <mail@cynapses.org>2009-10-04 10:10:19 +0200
commit7a37f9faf788897ce7bf44a65f828d4980d19c77 (patch)
tree996667786a79c153aeff19931a58f4bfcc987597 /include/libssh/libssh.h
parent149a2b4a18a70fd41aef9cdfdb4b7b277187a95f (diff)
downloadlibssh-7a37f9faf788897ce7bf44a65f828d4980d19c77.tar.gz
libssh-7a37f9faf788897ce7bf44a65f828d4980d19c77.tar.xz
libssh-7a37f9faf788897ce7bf44a65f828d4980d19c77.zip
Fixed ssh_options_copy().
Diffstat (limited to 'include/libssh/libssh.h')
-rw-r--r--include/libssh/libssh.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/libssh/libssh.h b/include/libssh/libssh.h
index f4cb55b..e794893 100644
--- a/include/libssh/libssh.h
+++ b/include/libssh/libssh.h
@@ -383,7 +383,7 @@ LIBSSH_API int ssh_message_type(ssh_message msg);
LIBSSH_API int ssh_mkdir (const char *pathname, mode_t mode);
LIBSSH_API ssh_session ssh_new(void);
-LIBSSH_API ssh_options ssh_options_copy(ssh_options opt);
+LIBSSH_API int ssh_options_copy(ssh_session src, ssh_session *dest);
LIBSSH_API int ssh_options_getopt(ssh_options options, int *argcptr, char **argv);
LIBSSH_API int ssh_options_parse_config(ssh_options opt, const char *filename);
LIBSSH_API int ssh_options_set(ssh_session session, enum ssh_options_e type,