diff options
author | Aris Adamantiadis <aris@0xbadc0de.be> | 2011-01-26 22:50:05 +0100 |
---|---|---|
committer | Aris Adamantiadis <aris@0xbadc0de.be> | 2011-01-26 22:50:05 +0100 |
commit | c1ecec7cda805908dff0b40fb888628630231823 (patch) | |
tree | 22e59f57938b2a4de9c85adfb304ebc8abb88f38 /src/auth.c | |
parent | 00d68d63fa2859fddae415f5f30201f6e65154e8 (diff) | |
download | libssh-c1ecec7cda805908dff0b40fb888628630231823.tar.gz libssh-c1ecec7cda805908dff0b40fb888628630231823.tar.xz libssh-c1ecec7cda805908dff0b40fb888628630231823.zip |
SSH1: Update a few fix from 0.4.8-git
Diffstat (limited to 'src/auth.c')
-rw-r--r-- | src/auth.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -500,7 +500,7 @@ int ssh_userauth_offer_pubkey(ssh_session session, const char *username, #ifdef WITH_SSH1 if (session->version == 1) { - ssh_userauth1_offer_pubkey(session, username, type, publickey); + rc = ssh_userauth1_offer_pubkey(session, username, type, publickey); leave_function(); return rc; } |