summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@dtucker.net>2019-03-10 11:26:34 +1100
committerDarren Tucker <dtucker@dtucker.net>2019-03-10 11:26:34 +1100
commitdc7e354275fccc3f13d30a0024f18b5ead560532 (patch)
treebddfa88fbfcda50403e2193c15471fdf3dafa7a9 /apps
parentebb7823e14596ad07fdc7d2ed0a267815f545927 (diff)
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 <tjh@openssl.org> Reviewed-by: Matthias St. Pierre <Matthias.St.Pierre@ncp-e.com> (Merged from https://github.com/openssl/openssl/pull/8449)
Diffstat (limited to 'apps')
-rw-r--r--apps/openssl.c2
1 files changed, 1 insertions, 1 deletions
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");