diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2016-11-02 10:59:26 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2016-11-02 10:59:26 +0000 |
commit | 05a1a006a3f7b47473e6e3dd8ae0de79ea665019 (patch) | |
tree | 8a8ad016c75b61422cbf4e99f12fc7fd8c8a902a | |
parent | 4a498e8f55d83cf10839b5b3f8903bfc241e49ee (diff) |
Expand another LHASH_OF macro.
-rw-r--r-- | lib/libssl/ssl.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libssl/ssl.h b/lib/libssl/ssl.h index f2aed06023b..1b12d990636 100644 --- a/lib/libssl/ssl.h +++ b/lib/libssl/ssl.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ssl.h,v 1.98 2016/11/02 10:55:48 jsing Exp $ */ +/* $OpenBSD: ssl.h,v 1.99 2016/11/02 10:59:25 jsing Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -895,7 +895,7 @@ struct ssl_ctx_st { #define SSL_SESS_CACHE_NO_INTERNAL \ (SSL_SESS_CACHE_NO_INTERNAL_LOOKUP|SSL_SESS_CACHE_NO_INTERNAL_STORE) -LHASH_OF(SSL_SESSION) *SSL_CTX_sessions(SSL_CTX *ctx); +struct lhash_st_SSL_SESSION *SSL_CTX_sessions(SSL_CTX *ctx); #define SSL_CTX_sess_number(ctx) \ SSL_CTX_ctrl(ctx,SSL_CTRL_SESS_NUMBER,0,NULL) #define SSL_CTX_sess_connect(ctx) \ |