mirror of https://github.com/openssl/openssl.git
Fix error reporting glitch in X509_STORE_CTX_print_verify_cb() in t_x509.c
Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: David von Oheimb <david.von.oheimb@siemens.com> (Merged from https://github.com/openssl/openssl/pull/11448)
This commit is contained in:
parent
a1e4c8ef81
commit
99d680e6bc
|
@ -472,7 +472,7 @@ int X509_STORE_CTX_print_verify_cb(int ok, X509_STORE_CTX *ctx)
|
|||
BIO_printf(bio, "certs in trust store:\n");
|
||||
print_store_certs(bio, X509_STORE_CTX_get0_store(ctx));
|
||||
}
|
||||
CMPerr(0, X509_R_CERTIFICATE_VERIFICATION_FAILED);
|
||||
X509err(0, X509_R_CERTIFICATE_VERIFICATION_FAILED);
|
||||
ERR_add_error_mem_bio("\n", bio);
|
||||
BIO_free(bio);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue