summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEasySec <easy.sec@free.fr>2020-04-07 16:59:47 +0200
committerPauli <pauli@openssl.org>2021-05-12 14:50:15 +1000
commit8975b76efa73dfb68780f5e5751424ec5e427bdc (patch)
tree681eb8b34a52f19e60aee1fdbc1bd36b9e81d7a1
parent842d61b5177bb57b7de374a3f25adc9e07e269d8 (diff)
use LHASH_OF(TYPE) macro to make the example consistent with the declaration in ssl.h
Reviewed-by: Ben Kaduk <kaduk@mit.edu> Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/11481)
-rw-r--r--doc/man3/SSL_CTX_sessions.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/man3/SSL_CTX_sessions.pod b/doc/man3/SSL_CTX_sessions.pod
index 5c28ebc272..0347b700f4 100644
--- a/doc/man3/SSL_CTX_sessions.pod
+++ b/doc/man3/SSL_CTX_sessions.pod
@@ -8,7 +8,7 @@ SSL_CTX_sessions - access internal session cache
#include <openssl/ssl.h>
- struct lhash_st *SSL_CTX_sessions(SSL_CTX *ctx);
+ LHASH_OF(SSL_SESSION) *SSL_CTX_sessions(SSL_CTX *ctx);
=head1 DESCRIPTION