From dc7e354275fccc3f13d30a0024f18b5ead560532 Mon Sep 17 00:00:00 2001 From: Darren Tucker Date: Sun, 10 Mar 2019 11:26:34 +1100 Subject: 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) --- apps/openssl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'apps') 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"); -- cgit v1.2.3