Commit dc7e3542 authored by Darren Tucker's avatar Darren Tucker
Browse files

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: default avatarTim Hudson <tjh@openssl.org>
Reviewed-by: default avatarMatthias St. Pierre <Matthias.St.Pierre@ncp-e.com>
(Merged from https://github.com/openssl/openssl/pull/8449)
parent ebb7823e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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");