From a78c7c0bfe56d67022ca18cfabefc73926dde0ae Mon Sep 17 00:00:00 2001 From: Rich Salz Date: Fri, 16 Apr 2021 11:29:35 -0400 Subject: [PATCH] Flip ordering back Reviewed-by: Richard Levitte Reviewed-by: Dmitry Belyavskiy (Merged from https://github.com/openssl/openssl/pull/14219) --- apps/lib/opt.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/lib/opt.c b/apps/lib/opt.c index f6324ba323..d22a884e67 100644 --- a/apps/lib/opt.c +++ b/apps/lib/opt.c @@ -373,10 +373,10 @@ int opt_cipher(const char *name, EVP_CIPHER **cipherp) */ int opt_md(const char *name, EVP_MD **mdp) { - *mdp = EVP_MD_fetch(NULL, name, NULL); + *mdp = (EVP_MD *)EVP_get_digestbyname(name); if (*mdp != NULL) return 1; - *mdp = (EVP_MD *)EVP_get_digestbyname(name); + *mdp = EVP_MD_fetch(NULL, name, NULL); if (*mdp != NULL) return 1; opt_printf_stderr("%s: Unknown option or message digest: %s\n", prog,