summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPauli <pauli@openssl.org>2022-07-25 13:01:00 +1000
committerHugo Landau <hlandau@openssl.org>2022-07-26 08:03:07 +0100
commit316fad64c1e541a530910a13160d48b7545ac1e0 (patch)
treed041e57d7f3bcd80154d753a3ece93daa14b1b27
parenta6843e6ae8ae0551aae8555783f06dab7951f112 (diff)
downloadopenssl-new-316fad64c1e541a530910a13160d48b7545ac1e0.tar.gz
Fix error in LHASH documentation
Reviewed-by: Hugo Landau <hlandau@openssl.org> Reviewed-by: Shane Lontis <shane.lontis@oracle.com> (Merged from https://github.com/openssl/openssl/pull/18859)
-rw-r--r--doc/man3/OPENSSL_LH_COMPFUNC.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/man3/OPENSSL_LH_COMPFUNC.pod b/doc/man3/OPENSSL_LH_COMPFUNC.pod
index 3ce005b9be..d3091f6a56 100644
--- a/doc/man3/OPENSSL_LH_COMPFUNC.pod
+++ b/doc/man3/OPENSSL_LH_COMPFUNC.pod
@@ -30,7 +30,7 @@ OPENSSL_LH_doall, OPENSSL_LH_doall_arg, OPENSSL_LH_error
TYPE *lh_TYPE_insert(LHASH_OF(TYPE) *table, TYPE *data);
TYPE *lh_TYPE_delete(LHASH_OF(TYPE) *table, TYPE *data);
- TYPE *lh_retrieve(LHASH_OF(TYPE) *table, TYPE *data);
+ TYPE *lh_TYPE_retrieve(LHASH_OF(TYPE) *table, TYPE *data);
void lh_TYPE_doall(LHASH_OF(TYPE) *table, OPENSSL_LH_DOALL_FUNC func);
void lh_TYPE_doall_arg(LHASH_OF(TYPE) *table, OPENSSL_LH_DOALL_FUNCARG func,