aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRich Salz <rsalz@akamai.com>2015-12-01 13:40:37 -0500
committerRich Salz <rsalz@openssl.org>2015-12-01 17:09:19 -0500
commit338f5727c88b1ce44a802c5115707309d6316fc4 (patch)
tree9202a078e0f6c07c81e20eb91c0d31b2675b1978
parente6390acac925f952cfd06ccdbba0b273b8f71551 (diff)
downloadopenssl-338f5727c88b1ce44a802c5115707309d6316fc4.tar.gz
typo fix on function
Reviewed-by: Richard Levitte <levitte@openssl.org>
-rw-r--r--include/openssl/x509.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/openssl/x509.h b/include/openssl/x509.h
index c48abe3d60..cdf392a9bf 100644
--- a/include/openssl/x509.h
+++ b/include/openssl/x509.h
@@ -615,7 +615,7 @@ DECLARE_ASN1_FUNCTIONS(X509_CINF)
DECLARE_ASN1_FUNCTIONS(X509)
DECLARE_ASN1_FUNCTIONS(X509_CERT_AUX)
-#define X509_new_index(l, p, newf, dupf, freef) \
+#define X509_get_ex_new_index(l, p, newf, dupf, freef) \
CRYPTO_get_ex_new_index(CRYPTO_EX_INDEX_X509, l, p, newf, dupf, freef)
int X509_set_ex_data(X509 *r, int idx, void *arg);
void *X509_get_ex_data(X509 *r, int idx);