mirror of
git://anongit.mindrot.org/openssh.git
synced 2025-04-24 20:28:23 +00:00
fix merge botch that broke !OPENSSL_HAS_ECC
This commit is contained in:
parent
2c53d2f32b
commit
4da2a1a7f6
@ -176,7 +176,7 @@ sshbuf_put_eckey(struct sshbuf *buf, const EC_KEY *v)
|
|||||||
return sshbuf_put_ec(buf, EC_KEY_get0_public_key(v),
|
return sshbuf_put_ec(buf, EC_KEY_get0_public_key(v),
|
||||||
EC_KEY_get0_group(v));
|
EC_KEY_get0_group(v));
|
||||||
}
|
}
|
||||||
#endif /* OPENSSL_HAS_ECC */
|
|
||||||
int
|
int
|
||||||
sshbuf_put_ec_pkey(struct sshbuf *buf, EVP_PKEY *pkey)
|
sshbuf_put_ec_pkey(struct sshbuf *buf, EVP_PKEY *pkey)
|
||||||
{
|
{
|
||||||
@ -186,4 +186,5 @@ sshbuf_put_ec_pkey(struct sshbuf *buf, EVP_PKEY *pkey)
|
|||||||
return SSH_ERR_LIBCRYPTO_ERROR;
|
return SSH_ERR_LIBCRYPTO_ERROR;
|
||||||
return sshbuf_put_eckey(buf, ec);
|
return sshbuf_put_eckey(buf, ec);
|
||||||
}
|
}
|
||||||
|
#endif /* OPENSSL_HAS_ECC */
|
||||||
#endif /* WITH_OPENSSL */
|
#endif /* WITH_OPENSSL */
|
||||||
|
Loading…
Reference in New Issue
Block a user