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/kex.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/kex.c')
-rw-r--r-- | libssh/kex.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libssh/kex.c b/libssh/kex.c index 52376668..95468c4a 100644 --- a/libssh/kex.c +++ b/libssh/kex.c @@ -331,7 +331,7 @@ void ssh_list_kex(ssh_session session, KEX *kex) { int set_kex(ssh_session session){ KEX *server = &session->server_kex; KEX *client=&session->client_kex; - SSH_OPTIONS *options=session->options; + ssh_options options=session->options; int i; const char *wanted; enter_function(); |