From 0e8e124d2023736c973ce8e06f4776efd1edb096 Mon Sep 17 00:00:00 2001 From: Aris Adamantiadis Date: Wed, 23 Sep 2009 22:13:19 +0200 Subject: get rid of SSH_OPTIONS --- libssh/server.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libssh/server.c') diff --git a/libssh/server.c b/libssh/server.c index a116836..b58316d 100644 --- a/libssh/server.c +++ b/libssh/server.c @@ -122,7 +122,7 @@ SSH_BIND *ssh_bind_new(void) { return ptr; } -void ssh_bind_set_options(SSH_BIND *ssh_bind, SSH_OPTIONS *options) { +void ssh_bind_set_options(SSH_BIND *ssh_bind, ssh_options options) { ssh_bind->options = options; } @@ -271,7 +271,7 @@ extern char *supported_methods[]; static int server_set_kex(ssh_session session) { KEX *server = &session->server_kex; - SSH_OPTIONS *options = session->options; + ssh_options options = session->options; int i, j; char *wanted; -- cgit