From 34cf6990f05f3e13991a32d58a8dc888504112d2 Mon Sep 17 00:00:00 2001 From: jsing <> Date: Sat, 4 Mar 2017 12:53:14 +0000 Subject: Treat "ERROR in STARTUP" as an actual error, rather than failing without exiting non-zero (which has been masking a DTLS related issue). Also make the message consistent with other errors. Spotted by inogochi@ --- src/regress/lib/libssl/ssl/ssltest.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/regress/lib/libssl/ssl/ssltest.c b/src/regress/lib/libssl/ssl/ssltest.c index 24f79e302c..59a2bea81a 100644 --- a/src/regress/lib/libssl/ssl/ssltest.c +++ b/src/regress/lib/libssl/ssl/ssltest.c @@ -1379,9 +1379,9 @@ doit(SSL *s_ssl, SSL *c_ssl, long count) } if (!do_client && !do_server) { - fprintf(stdout, "ERROR IN STARTUP\n"); + fprintf(stdout, "ERROR in STARTUP\n"); ERR_print_errors(bio_err); - break; + goto err; } if (do_client && !(done & C_DONE)) { -- cgit v1.2.3-55-g6feb