diff options
author | Hiroshi SHIBATA <[email protected]> | 2022-12-23 19:37:24 +0900 |
---|---|---|
committer | Hiroshi SHIBATA <[email protected]> | 2022-12-23 19:37:24 +0900 |
commit | edb83dc3a2c374e880e8eb488152872152790e92 (patch) | |
tree | 718f95aa6be3188a12df7b0dc70d3d9e04a7b50b /ext/openssl/ossl_pkey_ec.c | |
parent | eb8d4d7b5145849325985c00b810b8d75661d86e (diff) |
Revert the additional change from openssl-3.1.0
Revert "[ruby/openssl] pkey/ec: constify"
This reverts commit d2cd903c85f38f42c6aefc6d97a1558f74d8d9db.
Diffstat (limited to 'ext/openssl/ossl_pkey_ec.c')
-rw-r--r-- | ext/openssl/ossl_pkey_ec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/openssl/ossl_pkey_ec.c b/ext/openssl/ossl_pkey_ec.c index 92842f95ac..a59849f719 100644 --- a/ext/openssl/ossl_pkey_ec.c +++ b/ext/openssl/ossl_pkey_ec.c @@ -483,7 +483,7 @@ static VALUE ossl_ec_key_check_key(VALUE self) #ifdef HAVE_EVP_PKEY_CHECK EVP_PKEY *pkey; EVP_PKEY_CTX *pctx; - const EC_KEY *ec; + EC_KEY *ec; GetPKey(self, pkey); GetEC(self, ec); |