diff options
author | Aris Adamantiadis <aris@0xbadc0de.be> | 2009-09-23 22:13:19 +0200 |
---|---|---|
committer | Aris Adamantiadis <aris@0xbadc0de.be> | 2009-09-23 22:13:19 +0200 |
commit | 0e8e124d2023736c973ce8e06f4776efd1edb096 (patch) | |
tree | a713a4cdee7a21b4c4dceaa0e34b71fa67edbfb4 /libssh/client.c | |
parent | 9a8d4cd0fdd18127065cacbc11296933669ea9ca (diff) | |
download | libssh-0e8e124d2023736c973ce8e06f4776efd1edb096.tar.gz libssh-0e8e124d2023736c973ce8e06f4776efd1edb096.tar.xz libssh-0e8e124d2023736c973ce8e06f4776efd1edb096.zip |
get rid of SSH_OPTIONS
Diffstat (limited to 'libssh/client.c')
-rw-r--r-- | libssh/client.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libssh/client.c b/libssh/client.c index b29f832..5844095 100644 --- a/libssh/client.c +++ b/libssh/client.c @@ -470,7 +470,7 @@ int ssh_service_request(ssh_session session, const char *service) { * \see ssh_disconnect() */ int ssh_connect(ssh_session session) { - SSH_OPTIONS *options = session->options; + ssh_options options = session->options; int ssh1 = 0; int ssh2 = 0; int fd = -1; |