From: Richard Levitte Date: Fri, 30 Jun 2017 18:47:45 +0000 (+0200) Subject: When apps_startup() fails, exit with a failure code and a message X-Git-Tag: OpenSSL_1_1_1-pre1~1138 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=f2da4a4917eae1bf66290e1bd8ccd3db69d3fe63;p=oweals%2Fopenssl.git When apps_startup() fails, exit with a failure code and a message Reviewed-by: Rich Salz (Merged from https://github.com/openssl/openssl/pull/3816) --- diff --git a/apps/openssl.c b/apps/openssl.c index b2d4e6f208..2a140718ab 100644 --- a/apps/openssl.c +++ b/apps/openssl.c @@ -144,8 +144,13 @@ int main(int argc, char *argv[]) return 1; } - if (!apps_startup()) + if (!apps_startup()) { + BIO_printf(bio_err, + "FATAL: Startup failure (dev note: apps_startup() failed)\n"); + ERR_print_errors(bio_err); + ret = 1; goto end; + } prog = prog_init(); pname = opt_progname(argv[0]);