summaryrefslogtreecommitdiffstats
path: root/src/auth.c
diff options
context:
space:
mode:
authorAndreas Schneider <asn@cryptomilk.org>2011-08-30 10:28:57 +0200
committerAndreas Schneider <asn@cryptomilk.org>2011-08-30 10:28:57 +0200
commit822c68eb8e06204170a2b0f9641f5886a45d397f (patch)
tree92b0872cc10f949108848309dc6aeb3ab0307ee9 /src/auth.c
parent60b92e458e1cf16f0029d9251e0f117ff27a02d0 (diff)
downloadlibssh-822c68eb8e06204170a2b0f9641f5886a45d397f.tar.gz
libssh-822c68eb8e06204170a2b0f9641f5886a45d397f.tar.xz
libssh-822c68eb8e06204170a2b0f9641f5886a45d397f.zip
pki: Use consistent API for ssh_pki_export_privkey_to_pubkey().
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;
}