1
0
mirror of https://git.libssh.org/projects/libssh.git synced 2025-11-30 13:01:23 +03:00

server: Fix session pubkey import

This is a regression introduced by 16217454d5

We import the pubkey into current_crypto which is NULL instead of
next_crypto.

Fixes T90

Signed-off-by: Andreas Schneider <asn@cryptomilk.org>
This commit is contained in:
Andreas Schneider
2018-04-20 13:46:11 +02:00
parent be414423d7
commit 4aeb0cfd9c

View File

@@ -277,7 +277,7 @@ int ssh_get_key_params(ssh_session session, ssh_key *privkey){
return -1; return -1;
} }
rc = ssh_dh_import_pubkey_blob(session, pubkey_blob); rc = ssh_dh_import_next_pubkey_blob(session, pubkey_blob);
ssh_string_free(pubkey_blob); ssh_string_free(pubkey_blob);
if (rc != 0) { if (rc != 0) {
ssh_set_error(session, ssh_set_error(session,