summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorJean-Paul Calderone <exarkun@twistedmatrix.com>2014-04-02 20:47:38 -0400
committerMatt Caswell <matt@openssl.org>2014-05-12 22:48:06 +0100
commitb3edc5fdb1546eb4652c523a1ff52c642f17a726 (patch)
treea9f0f294adc953b81dcce2034692d47a57ef13ae /doc
parentf7c4fe519b6df370e267dbb2e92cec0da06a9ece (diff)
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