summaryrefslogtreecommitdiffstats
path: root/src/auth.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/auth.c')
-rw-r--r--src/auth.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/auth.c b/src/auth.c
index 3792854..f5ce749 100644
--- a/src/auth.c
+++ b/src/auth.c
@@ -1118,8 +1118,8 @@ int ssh_userauth_publickey_auto(ssh_session session,
continue;
}
- pubkey = ssh_pki_publickey_from_privatekey(privkey);
- if (pubkey == NULL) {
+ rc = ssh_pki_export_privkey_to_pubkey(privkey, &pubkey);
+ if (rc == SSH_ERROR) {
ssh_key_free(privkey);
return SSH_AUTH_ERROR;
}