From: Dr. Stephen Henson Date: Tue, 4 Apr 2006 18:47:20 +0000 (+0000) Subject: Add an explicit load_config() call so any added algorithms are X-Git-Tag: OpenSSL_0_9_8k^2~1446 X-Git-Url: https://git.openssl.org/?p=openssl.git;a=commitdiff_plain;h=53ec8809cf2566c7b5c39e9ce58867ffdbd120be;hp=863779065e65d353d4dde6f428a594e427774ce2;ds=sidebyside Add an explicit load_config() call so any added algorithms are visible. --- diff --git a/apps/openssl.c b/apps/openssl.c index 26c7297d66..a9f3df0955 100644 --- a/apps/openssl.c +++ b/apps/openssl.c @@ -432,6 +432,10 @@ static int do_cmd(LHASH *prog, int argc, char *argv[]) bio_stdout = BIO_push(tmpbio, bio_stdout); } #endif + + if (!load_config(bio_err, NULL)) + goto end; + if (list_type == FUNC_TYPE_PKEY) list_pkey(bio_stdout); else