[openssl-commits] [openssl] OpenSSL_1_0_2-stable update

Matt Caswell matt at openssl.org
Mon May 11 11:07:44 UTC 2015


The branch OpenSSL_1_0_2-stable has been updated
       via  8a73e3a0e8ba5360c6e2e4296f0d1bb2ff201038 (commit)
      from  edc2a76ade6ea8e22e4f092d33cd6171872a5f82 (commit)


- Log -----------------------------------------------------------------
commit 8a73e3a0e8ba5360c6e2e4296f0d1bb2ff201038
Author: Bjoern D. Rasmussen <contact at bearware.dk>
Date:   Sun May 10 07:51:29 2015 +0200

    Fix for memcpy() and strcmp() being undefined.
    
    clang says: "s_cb.c:958:9: error: implicitly declaring library function
    'memcpy'"
    
    Reviewed-by: Rich Salz <rsalz at openssl.org>
    Reviewed-by: Richard Levitte <levitte at openssl.org>
    (cherry picked from commit 8f744cceff5bce8cb00a6ddd739c1bbb85c142ea)
    
    Conflicts:
    	apps/s_cb.c

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

Summary of changes:
 apps/s_cb.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/apps/s_cb.c b/apps/s_cb.c
index ee57537..dd3aa74 100644
--- a/apps/s_cb.c
+++ b/apps/s_cb.c
@@ -111,6 +111,7 @@
 
 #include <stdio.h>
 #include <stdlib.h>
+#include <string.h> /* for memcpy() and strcmp() */
 #define USE_SOCKETS
 #define NON_MAIN
 #include "apps.h"


More information about the openssl-commits mailing list