The functions take a SSL *, not a SSL_CTX *

Signed-off-by: Kurt Roeckx <kurt@roeckx.be>
Reviewed-by: Rich Salz <rsalz@openssl.org>

RT: #4192, MR: #1533
This commit is contained in:
Daniel Kahn Gillmor 2015-12-23 21:03:32 +01:00 committed by Kurt Roeckx
parent 0b081fcd08
commit d938e8dfee

View file

@ -17,10 +17,10 @@ verification or chain store
int SSL_CTX_set0_chain_cert_store(SSL_CTX *ctx, X509_STORE *st);
int SSL_CTX_set1_chain_cert_store(SSL_CTX *ctx, X509_STORE *st);
int SSL_set0_verify_cert_store(SSL_CTX *ctx, X509_STORE *st);
int SSL_set1_verify_cert_store(SSL_CTX *ctx, X509_STORE *st);
int SSL_set0_chain_cert_store(SSL_CTX *ctx, X509_STORE *st);
int SSL_set1_chain_cert_store(SSL_CTX *ctx, X509_STORE *st);
int SSL_set0_verify_cert_store(SSL *ctx, X509_STORE *st);
int SSL_set1_verify_cert_store(SSL *ctx, X509_STORE *st);
int SSL_set0_chain_cert_store(SSL *ctx, X509_STORE *st);
int SSL_set1_chain_cert_store(SSL *ctx, X509_STORE *st);
=head1 DESCRIPTION