[openssl-commits] [openssl] master update
Matt Caswell
matt at openssl.org
Mon May 11 11:07:34 UTC 2015
The branch master has been updated
via 8f744cceff5bce8cb00a6ddd739c1bbb85c142ea (commit)
from 14def5f5375594830597cc153e11c6017f6adddf (commit)
- Log -----------------------------------------------------------------
commit 8f744cceff5bce8cb00a6ddd739c1bbb85c142ea
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>
-----------------------------------------------------------------------
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 442b335..4979edf 100644
--- a/apps/s_cb.c
+++ b/apps/s_cb.c
@@ -112,6 +112,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <assert.h>
+#include <string.h> /* for memcpy() and strcmp() */
#define USE_SOCKETS
#include "apps.h"
#undef USE_SOCKETS
More information about the openssl-commits
mailing list