Fix typo in ifndef OPENSSL_NO_ENGINES.
authorDarren Tucker <dtucker@dtucker.net>
Sun, 10 Mar 2019 00:26:34 +0000 (11:26 +1100)
committerDarren Tucker <dtucker@dtucker.net>
Sun, 10 Mar 2019 00:26:34 +0000 (11:26 +1100)
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)

apps/openssl.c

index 1acae242156257f6fe37918c894b33105ad9de36..72a0bb008550c3f4a45ee70d0d26fbb88ef681b8 100644 (file)
@@ -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");