summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2016-03-20 18:58:19 +0000
committerDr. Stephen Henson <steve@openssl.org>2016-03-20 19:56:56 +0000
commit99cccf3643f96892196578cb599ca91661a7128c (patch)
tree75c49902fcc857145efd52f753a10ff629a0249d /include
parent01ce6f746d5daaec6210bc13851f81f7d4ef38ec (diff)
constify DSA_SIG_get0()
Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'include')
-rw-r--r--include/openssl/dsa.h2
1 files changed, 1 insertions, 1 deletions
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,