From: Pauli Date: Thu, 10 Jun 2021 00:26:43 +0000 (+1000) Subject: fipsinstall: use the app's libctx and property query when searching for algorithms X-Git-Tag: openssl-3.0.0-beta1~68 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c8dd887d3c415bfeaabf12e719353b00d5d2e700;p=thirdparty%2Fopenssl.git fipsinstall: use the app's libctx and property query when searching for algorithms Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/15687) --- diff --git a/apps/fipsinstall.c b/apps/fipsinstall.c index 4defa0ab815..d0efdf7643b 100644 --- a/apps/fipsinstall.c +++ b/apps/fipsinstall.c @@ -431,7 +431,7 @@ opthelp: if (read_buffer == NULL) goto end; - mac = EVP_MAC_fetch(NULL, mac_name, NULL); + mac = EVP_MAC_fetch(app_get0_libctx(), mac_name, app_get0_propq()); if (mac == NULL) { BIO_printf(bio_err, "Unable to get MAC of type %s\n", mac_name); goto end;