From: Darren Tucker Date: Sun, 10 Mar 2019 00:26:34 +0000 (+1100) Subject: Fix typo in ifndef OPENSSL_NO_ENGINES. X-Git-Tag: openssl-3.0.0-alpha1~2407 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=dc7e354275fccc3f13d30a0024f18b5ead560532;p=oweals%2Fopenssl.git Fix typo in ifndef OPENSSL_NO_ENGINES. All other instances are OPENSSL_NO_ENGINE without the trailing "S". Fixes build when configured with no-engine. CLA: trivial Reviewed-by: Tim Hudson Reviewed-by: Matthias St. Pierre (Merged from https://github.com/openssl/openssl/pull/8449) --- diff --git a/apps/openssl.c b/apps/openssl.c index 1acae24215..72a0bb0085 100644 --- a/apps/openssl.c +++ b/apps/openssl.c @@ -845,7 +845,7 @@ static int SortFnByName(const void *_f1, const void *_f2) static void list_engines(void) { -#ifndef OPENSSL_NO_ENGINES +#ifndef OPENSSL_NO_ENGINE ENGINE *e; BIO_puts(bio_out, "Engines:\n");