summaryrefslogtreecommitdiffstats
path: root/crypto/threads
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2015-06-21 19:13:57 +0200
committerRichard Levitte <levitte@openssl.org>2015-06-21 22:12:07 +0200
commit90ee3c1646a5efc1a24aa4d89ab15b3cbd3dbd75 (patch)
treec02f81cf86389933bb887e465b282d02a652e8d4 /crypto/threads
parent7ef465050edfd8e8d95e01affc02f6e26cf6fa7d (diff)
Cleanup mttest.c : better error reporting when certs are missing
Reviewed-by: Rich Salz <rsalz@openssl.org> (cherry picked from commit 7a1789d254c561bd3024c971b5cfeeedd12d63f3)
Diffstat (limited to 'crypto/threads')
-rw-r--r--crypto/threads/mttest.c3
1 files changed, 3 insertions, 0 deletions
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;
}