[openssl] master update

Matt Caswell matt at openssl.org
Fri Oct 16 07:33:33 UTC 2020


The branch master has been updated
       via  192d4b9ca6d7603ace714f7a21111d35be311170 (commit)
      from  f4bd510503071e20472032dc9d053810a1937e95 (commit)


- Log -----------------------------------------------------------------
commit 192d4b9ca6d7603ace714f7a21111d35be311170
Author: Randall S. Becker <rsbecker at nexbridge.com>
Date:   Fri Oct 9 09:27:20 2020 -0600

    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 <rsbecker at nexbridge.com>
    
    Reviewed-by: Richard Levitte <levitte at openssl.org>
    Reviewed-by: Matt Caswell <matt at openssl.org>
    (Merged from https://github.com/openssl/openssl/pull/13103)

-----------------------------------------------------------------------

Summary of changes:
 apps/lib/engine.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/apps/lib/engine.c b/apps/lib/engine.c
index e6682f5e8f..f47c94fbce 100644
--- a/apps/lib/engine.c
+++ b/apps/lib/engine.c
@@ -14,6 +14,8 @@
  */
 #define OPENSSL_SUPPRESS_DEPRECATED
 
+#include <string.h> /* strcmp */
+
 #include <openssl/types.h> /* Ensure we have the ENGINE type, regardless */
 #ifndef OPENSSL_NO_ENGINE
 # include <openssl/engine.h>


More information about the openssl-commits mailing list