diff options
author | Jean-Paul Calderone <exarkun@twistedmatrix.com> | 2014-04-03 02:47:38 +0200 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2014-05-12 23:41:13 +0200 |
commit | a4a442cccf45d9563b4266164bf8cfc9e24086ce (patch) | |
tree | 0a0ad69dbb998a8bd6fcbf84c8f5648199bd5fa2 /doc | |
parent | Replace manual ASN1 decoder with ASN1_get_object (diff) | |
download | openssl-a4a442cccf45d9563b4266164bf8cfc9e24086ce.tar.xz openssl-a4a442cccf45d9563b4266164bf8cfc9e24086ce.zip |
Correct the return type on the signature for X509_STORE_CTX_get_ex_data given in the pod file.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/crypto/X509_STORE_CTX_get_ex_new_index.pod | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/crypto/X509_STORE_CTX_get_ex_new_index.pod b/doc/crypto/X509_STORE_CTX_get_ex_new_index.pod index 8d6b9dda47..8a9243d756 100644 --- a/doc/crypto/X509_STORE_CTX_get_ex_new_index.pod +++ b/doc/crypto/X509_STORE_CTX_get_ex_new_index.pod @@ -15,7 +15,7 @@ X509_STORE_CTX_get_ex_new_index, X509_STORE_CTX_set_ex_data, X509_STORE_CTX_get_ int X509_STORE_CTX_set_ex_data(X509_STORE_CTX *d, int idx, void *arg); - char *X509_STORE_CTX_get_ex_data(X509_STORE_CTX *d, int idx); + void *X509_STORE_CTX_get_ex_data(X509_STORE_CTX *d, int idx); =head1 DESCRIPTION |