diff options
author | Andreas Schneider <mail@cynapses.org> | 2009-07-25 20:26:01 +0200 |
---|---|---|
committer | Andreas Schneider <mail@cynapses.org> | 2009-07-25 20:26:56 +0200 |
commit | 3b8c4dc750352288febb282c9f52f2cd20a760d5 (patch) | |
tree | 4b6d29f2537380216057550f871f686434aa5875 /libssh/kex.c | |
parent | 5d1fa1be240018a53364654f4b5005a1e4d27093 (diff) | |
download | libssh-3b8c4dc750352288febb282c9f52f2cd20a760d5.tar.gz libssh-3b8c4dc750352288febb282c9f52f2cd20a760d5.tar.xz libssh-3b8c4dc750352288febb282c9f52f2cd20a760d5.zip |
Fix conflicting declarations of ssh_session and ssh_kbdint.
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 887fc5c5..c4ef6801 100644 --- a/libssh/kex.c +++ b/libssh/kex.c @@ -311,7 +311,7 @@ error: return -1; } -void ssh_list_kex(struct ssh_session *session, KEX *kex) { +void ssh_list_kex(ssh_session session, KEX *kex) { int i = 0; #ifdef DEBUG_CRYPTO |