From 99cccf3643f96892196578cb599ca91661a7128c Mon Sep 17 00:00:00 2001 From: "Dr. Stephen Henson" Date: Sun, 20 Mar 2016 18:58:19 +0000 Subject: constify DSA_SIG_get0() Reviewed-by: Rich Salz --- include/openssl/dsa.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include') diff --git a/include/openssl/dsa.h b/include/openssl/dsa.h index 3346853152..865344932f 100644 --- a/include/openssl/dsa.h +++ b/include/openssl/dsa.h @@ -184,7 +184,7 @@ DSA_SIG *DSA_SIG_new(void); void DSA_SIG_free(DSA_SIG *a); int i2d_DSA_SIG(const DSA_SIG *a, unsigned char **pp); DSA_SIG *d2i_DSA_SIG(DSA_SIG **v, const unsigned char **pp, long length); -void DSA_SIG_get0(BIGNUM **pr, BIGNUM **ps, DSA_SIG *sig); +void DSA_SIG_get0(BIGNUM **pr, BIGNUM **ps, const DSA_SIG *sig); DSA_SIG *DSA_do_sign(const unsigned char *dgst, int dlen, DSA *dsa); int DSA_do_verify(const unsigned char *dgst, int dgst_len, -- cgit v1.2.3