summaryrefslogtreecommitdiffstats
path: root/doc
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 /doc
parent01ce6f746d5daaec6210bc13851f81f7d4ef38ec (diff)
constify DSA_SIG_get0()
Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'doc')
-rw-r--r--doc/crypto/DSA_SIG_new.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/crypto/DSA_SIG_new.pod b/doc/crypto/DSA_SIG_new.pod
index 2d9e2729ed..82cff7d4c1 100644
--- a/doc/crypto/DSA_SIG_new.pod
+++ b/doc/crypto/DSA_SIG_new.pod
@@ -10,7 +10,7 @@ DSA_SIG_new, DSA_SIG_free - allocate and free DSA signature objects
DSA_SIG *DSA_SIG_new(void);
void DSA_SIG_free(DSA_SIG *a);
- void DSA_SIG_get0(BIGNUM **pr, BIGNUM **ps, DSA_SIG *sig);
+ void DSA_SIG_get0(BIGNUM **pr, BIGNUM **ps, const DSA_SIG *sig);
=head1 DESCRIPTION