[openssl-commits] [openssl] master update
paul.dale at oracle.com
paul.dale at oracle.com
Fri Jun 15 00:37:28 UTC 2018
The branch master has been updated
via 86a92bcb13a843f820fae7f1a4c78a6e654fe069 (commit)
from 741f0c32b55e06208fba9a72497a017bdee8737c (commit)
- Log -----------------------------------------------------------------
commit 86a92bcb13a843f820fae7f1a4c78a6e654fe069
Author: Eric S. Raymond <esr at thyrsus.com>
Date: Thu Jun 14 20:16:45 2018 -0400
Repair broken C syntax (missing close parens) in a manual page.
Reviewed-by: Rich Salz <rsalz at openssl.org>
Reviewed-by: Paul Dale <paul.dale at oracle.com>
(Merged from https://github.com/openssl/openssl/pull/6491)
-----------------------------------------------------------------------
Summary of changes:
doc/man3/OPENSSL_LH_COMPFUNC.pod | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/doc/man3/OPENSSL_LH_COMPFUNC.pod b/doc/man3/OPENSSL_LH_COMPFUNC.pod
index 06908a4..2064040 100644
--- a/doc/man3/OPENSSL_LH_COMPFUNC.pod
+++ b/doc/man3/OPENSSL_LH_COMPFUNC.pod
@@ -19,13 +19,13 @@ lh_TYPE_doall, lh_TYPE_doall_arg, lh_TYPE_error - dynamic hash table
DECLARE_LHASH_OF(TYPE);
LHASH *lh_TYPE_new();
- void lh_TYPE_free(LHASH_OF(TYPE *table);
+ void lh_TYPE_free(LHASH_OF(TYPE) *table);
- TYPE *lh_TYPE_insert(LHASH_OF(TYPE *table, TYPE *data);
- TYPE *lh_TYPE_delete(LHASH_OF(TYPE *table, TYPE *data);
- TYPE *lh_retrieve(LHASH_OFTYPE *table, TYPE *data);
+ 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);
- void lh_TYPE_doall(LHASH_OF(TYPE *table, OPENSSL_LH_DOALL_FUNC func);
+ 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,
TYPE, TYPE *arg);
More information about the openssl-commits
mailing list