From 192d4b9ca6d7603ace714f7a21111d35be311170 Mon Sep 17 00:00:00 2001 From: "Randall S. Becker" Date: Fri, 9 Oct 2020 09:27:20 -0600 Subject: [PATCH] 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) --- apps/lib/engine.c | 2 ++ 1 file changed, 2 insertions(+) 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 -- 2.47.2