diff options
author | Darren Tucker <dtucker@dtucker.net> | 2019-03-10 01:26:34 +0100 |
---|---|---|
committer | Darren Tucker <dtucker@dtucker.net> | 2019-03-10 01:26:34 +0100 |
commit | dc7e354275fccc3f13d30a0024f18b5ead560532 (patch) | |
tree | bddfa88fbfcda50403e2193c15471fdf3dafa7a9 /apps/openssl.c | |
parent | Print all loaded engines with openssl list -engines (diff) | |
download | openssl-dc7e354275fccc3f13d30a0024f18b5ead560532.tar.xz openssl-dc7e354275fccc3f13d30a0024f18b5ead560532.zip |
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/openssl.c')
-rw-r--r-- | apps/openssl.c | 2 |
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"); |