summaryrefslogtreecommitdiffstats
path: root/doc/man3/BIO_get_ex_new_index.pod
diff options
context:
space:
mode:
authorBenjamin Kaduk <bkaduk@akamai.com>2020-01-17 11:15:59 -0800
committerBenjamin Kaduk <kaduk@mit.edu>2020-03-13 14:20:14 -0700
commitfe41c06e69613b1a4814b3e3cdbf460f2678ec99 (patch)
tree9888a4f5569f9824dbe63d45bff363acd0016436 /doc/man3/BIO_get_ex_new_index.pod
parent06f876837a8ec76b28c42953731a156c0c3700e2 (diff)
doc: fix spelling of TYPE_get_ex_new_index
The generated macros are TYPE_get_ex_new_index() (to match CRYPTO_get_ex_new_index()), not TYPE_get_new_ex_index(), even though the latter spelling seems more natural. Reviewed-by: Tomas Mraz <tmraz@fedoraproject.org> (Merged from https://github.com/openssl/openssl/pull/10943)
Diffstat (limited to 'doc/man3/BIO_get_ex_new_index.pod')
-rw-r--r--doc/man3/BIO_get_ex_new_index.pod4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/man3/BIO_get_ex_new_index.pod b/doc/man3/BIO_get_ex_new_index.pod
index 0bacb2e0cb..e7fa5a1e16 100644
--- a/doc/man3/BIO_get_ex_new_index.pod
+++ b/doc/man3/BIO_get_ex_new_index.pod
@@ -53,7 +53,7 @@ L<CRYPTO_get_ex_new_index(3)>.
These functions handle application-specific data for OpenSSL data
structures.
-TYPE_get_new_ex_index() is a macro that calls CRYPTO_get_ex_new_index()
+TYPE_get_ex_new_index() is a macro that calls CRYPTO_get_ex_new_index()
with the correct B<index> value.
TYPE_set_ex_data() is a function that calls CRYPTO_set_ex_data() with
@@ -74,7 +74,7 @@ there are no backward compatibility concerns.
=head1 RETURN VALUES
-TYPE_get_new_ex_index() returns a new index on success or -1 on error.
+TYPE_get_ex_new_index() returns a new index on success or -1 on error.
TYPE_set_ex_data() returns 1 on success or 0 on error.