summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorJean-Paul Calderone <exarkun@twistedmatrix.com>2014-04-03 02:47:38 +0200
committerMatt Caswell <matt@openssl.org>2014-05-12 23:41:13 +0200
commita4a442cccf45d9563b4266164bf8cfc9e24086ce (patch)
tree0a0ad69dbb998a8bd6fcbf84c8f5648199bd5fa2 /doc
parentReplace manual ASN1 decoder with ASN1_get_object (diff)
downloadopenssl-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.pod2
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