mirror of
https://git.libssh.org/projects/libssh.git
synced 2025-11-29 01:03:57 +03:00
pki: Add missing ECC ifdef.
This commit is contained in:
@@ -208,6 +208,7 @@ ssh_key pki_key_dup(const ssh_key key, int demote)
|
||||
|
||||
break;
|
||||
case SSH_KEYTYPE_ECDSA:
|
||||
#ifdef HAVE_OPENSSL_ECC
|
||||
/* privkey -> pubkey */
|
||||
if (demote && ssh_key_is_private(key)) {
|
||||
const EC_POINT *p;
|
||||
@@ -231,6 +232,7 @@ ssh_key pki_key_dup(const ssh_key key, int demote)
|
||||
new->ecdsa = EC_KEY_dup(key->ecdsa);
|
||||
}
|
||||
break;
|
||||
#endif
|
||||
case SSH_KEYTYPE_UNKNOWN:
|
||||
ssh_key_free(new);
|
||||
return NULL;
|
||||
|
||||
Reference in New Issue
Block a user