mirror of https://github.com/openssl/openssl.git
PR: 1411
Submitted by: steve@openssl.org Allow use of trusted certificates in SSL_CTX_use_chain_file()
This commit is contained in:
parent
43e9e1a160
commit
f2671f8ac4
|
@ -723,7 +723,7 @@ int SSL_CTX_use_certificate_chain_file(SSL_CTX *ctx, const char *file)
|
|||
goto end;
|
||||
}
|
||||
|
||||
x=PEM_read_bio_X509(in,NULL,ctx->default_passwd_callback,ctx->default_passwd_callback_userdata);
|
||||
x=PEM_read_bio_X509_AUX(in,NULL,ctx->default_passwd_callback,ctx->default_passwd_callback_userdata);
|
||||
if (x == NULL)
|
||||
{
|
||||
SSLerr(SSL_F_SSL_CTX_USE_CERTIFICATE_CHAIN_FILE,ERR_R_PEM_LIB);
|
||||
|
|
Loading…
Reference in New Issue