[openssl] master update
matthias.st.pierre at ncp-e.com
matthias.st.pierre at ncp-e.com
Sun Mar 10 08:51:14 UTC 2019
The branch master has been updated
via dc7e354275fccc3f13d30a0024f18b5ead560532 (commit)
from ebb7823e14596ad07fdc7d2ed0a267815f545927 (commit)
- Log -----------------------------------------------------------------
commit dc7e354275fccc3f13d30a0024f18b5ead560532
Author: Darren Tucker <dtucker at dtucker.net>
Date: Sun Mar 10 11:26:34 2019 +1100
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 at openssl.org>
Reviewed-by: Matthias St. Pierre <Matthias.St.Pierre at ncp-e.com>
(Merged from https://github.com/openssl/openssl/pull/8449)
-----------------------------------------------------------------------
Summary of changes:
apps/openssl.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/apps/openssl.c b/apps/openssl.c
index 1acae24..72a0bb0 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");
More information about the openssl-commits
mailing list