From: Richard Levitte Date: Sun, 21 Jun 2015 17:13:57 +0000 (+0200) Subject: Cleanup mttest.c : better error reporting when certs are missing X-Git-Tag: OpenSSL_1_0_1p~16 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=5891dae67c93d53e79bfa2bdc31d9bd72ba9da73;p=oweals%2Fopenssl.git Cleanup mttest.c : better error reporting when certs are missing Reviewed-by: Rich Salz (cherry picked from commit 7a1789d254c561bd3024c971b5cfeeedd12d63f3) --- diff --git a/crypto/threads/mttest.c b/crypto/threads/mttest.c index 7feffcc83c..2621ec0e5c 100644 --- a/crypto/threads/mttest.c +++ b/crypto/threads/mttest.c @@ -278,9 +278,12 @@ int main(int argc, char *argv[]) SSL_SESS_CACHE_SERVER); if (!SSL_CTX_use_certificate_file(s_ctx, scert, SSL_FILETYPE_PEM)) { + BIO_printf(bio_err, "SSL_CTX_use_certificate_file (%s)\n", scert); ERR_print_errors(bio_err); + goto end; } else if (!SSL_CTX_use_RSAPrivateKey_file(s_ctx, scert, SSL_FILETYPE_PEM)) { + BIO_printf(bio_err, "SSL_CTX_use_RSAPrivateKey_file (%s)\n", scert); ERR_print_errors(bio_err); goto end; }