aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/ecdsa
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2015-09-12 01:53:52 +0100
committerDr. Stephen Henson <steve@openssl.org>2015-09-12 01:53:52 +0100
commitaabd49232025807babe995006a46c4c7815ce868 (patch)
tree2c0b4f9cb849f599ee7d5b89b434cee5c80d4144 /crypto/ecdsa
parentbc2a15cdfb5a5a91b9166371b41b7e0c71e547c6 (diff)
downloadopenssl-aabd49232025807babe995006a46c4c7815ce868.tar.gz
Constify ECDSA_METHOD_new.
PR#3920. Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'crypto/ecdsa')
-rw-r--r--crypto/ecdsa/ecs_lib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/ecdsa/ecs_lib.c b/crypto/ecdsa/ecs_lib.c
index f3007e5043..4e1c63a175 100644
--- a/crypto/ecdsa/ecs_lib.c
+++ b/crypto/ecdsa/ecs_lib.c
@@ -247,7 +247,7 @@ void *ECDSA_get_ex_data(EC_KEY *d, int idx)
return (CRYPTO_get_ex_data(&ecdsa->ex_data, idx));
}
-ECDSA_METHOD *ECDSA_METHOD_new(ECDSA_METHOD *ecdsa_meth)
+ECDSA_METHOD *ECDSA_METHOD_new(const ECDSA_METHOD *ecdsa_meth)
{
ECDSA_METHOD *ret;