From: Randall S. Becker Date: Fri, 9 Oct 2020 15:27:20 +0000 (-0600) Subject: Fix missing include of string.h in apps/lib/engine.c for strcmp. X-Git-Tag: openssl-3.0.0-alpha8~63 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=192d4b9ca6d7603ace714f7a21111d35be311170;p=thirdparty%2Fopenssl.git Fix missing include of string.h in apps/lib/engine.c for strcmp. This include is required for c99 on the NonStop TNS/X platform. CLA: trivial Fixes #13102 Signed-off-by: Randall S. Becker Reviewed-by: Richard Levitte Reviewed-by: Matt Caswell (Merged from https://github.com/openssl/openssl/pull/13103) --- diff --git a/apps/lib/engine.c b/apps/lib/engine.c index e6682f5e8fa..f47c94fbce0 100644 --- a/apps/lib/engine.c +++ b/apps/lib/engine.c @@ -14,6 +14,8 @@ */ #define OPENSSL_SUPPRESS_DEPRECATED +#include /* strcmp */ + #include /* Ensure we have the ENGINE type, regardless */ #ifndef OPENSSL_NO_ENGINE # include