From: Jean-Paul Calderone Date: Thu, 3 Apr 2014 00:47:38 +0000 (-0400) Subject: Correct the return type on the signature for X509_STORE_CTX_get_ex_data given in... X-Git-Tag: master-post-reformat~813 X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff_plain;h=a4a442cccf45d9563b4266164bf8cfc9e24086ce;ds=sidebyside Correct the return type on the signature for X509_STORE_CTX_get_ex_data given in the pod file. --- 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