From: Dr. Stephen Henson Date: Thu, 27 May 2010 14:09:03 +0000 (+0000) Subject: PR: 2262 X-Git-Tag: OpenSSL-fips-2_0-rc1~1083 X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff_plain;h=4e96633ac754287a17ae399284987916ce480ef0 PR: 2262 Submitted By: Victor Wagner Fix error reporting in load_key function. --- diff --git a/apps/apps.c b/apps/apps.c index 200f1963f5..1439bb49da 100644 --- a/apps/apps.c +++ b/apps/apps.c @@ -875,10 +875,17 @@ EVP_PKEY *load_key(BIO *err, const char *file, int format, int maybe_stdin, if (format == FORMAT_ENGINE) { if (!e) - BIO_printf(bio_err,"no engine specified\n"); + BIO_printf(err,"no engine specified\n"); else + { pkey = ENGINE_load_private_key(e, file, ui_method, &cb_data); + if (!pkey) + { + BIO_printf(err,"cannot load %s from engine\n",key_descrip); + ERR_print_errors(err); + } + } goto end; } #endif @@ -937,8 +944,11 @@ EVP_PKEY *load_key(BIO *err, const char *file, int format, int maybe_stdin, } end: if (key != NULL) BIO_free(key); - if (pkey == NULL) + if (pkey == NULL) + { BIO_printf(err,"unable to load %s\n", key_descrip); + ERR_print_errors(err); + } return(pkey); }