summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2016-03-17 14:18:23 +0000
committerDr. Stephen Henson <steve@openssl.org>2016-03-19 22:04:38 +0000
commit34c2db9b562baffd30a6a2dda7d4247fadbf4acd (patch)
treee4f958c611f1751ed31d1f424bfcb72a81e4a22c /doc
parent674d5858df6cd3dc5cafa25875861f4742d64608 (diff)
constify ECDSA_SIG_get0()
PR#4436 Reviewed-by: Richard Levitte <levitte@openssl.org> Reviewed-by: Viktor Dukhovni <viktor@openssl.org>
Diffstat (limited to 'doc')
-rw-r--r--doc/crypto/ecdsa.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/crypto/ecdsa.pod b/doc/crypto/ecdsa.pod
index dbd678f7c1..67ab536793 100644
--- a/doc/crypto/ecdsa.pod
+++ b/doc/crypto/ecdsa.pod
@@ -13,7 +13,7 @@ algorithm (ECDSA) functions.
ECDSA_SIG *ECDSA_SIG_new(void);
void ECDSA_SIG_free(ECDSA_SIG *sig);
- void ECDSA_SIG_get0(BIGNUM **pr, BIGNUM **ps, ECDSA_SIG *sig);
+ void ECDSA_SIG_get0(BIGNUM **pr, BIGNUM **ps, const ECDSA_SIG *sig);
int i2d_ECDSA_SIG(const ECDSA_SIG *sig, unsigned char **pp);
ECDSA_SIG *d2i_ECDSA_SIG(ECDSA_SIG **sig, const unsigned char **pp, long len);
int ECDSA_size(const EC_KEY *eckey);