summaryrefslogtreecommitdiffstats
path: root/engines
diff options
context:
space:
mode:
authorGeoff Thorpe <geoff@openssl.org>2002-10-16 21:50:28 +0000
committerGeoff Thorpe <geoff@openssl.org>2002-10-16 21:50:28 +0000
commit5be1264b7e4756a345bce6c1c8bb32f418c8a0aa (patch)
treedad9151e8e0687e1a7cc8c0fc838c9ff40fa963e /engines
parent314c667050065bac7d1b0b1a767af6ff9585a596 (diff)
The ENGINE implementations in ./engines/ should be role models on how to
write external engines (and thus should require only installed openssl headers and libs to compile without warnings). So this gets rid of recently introduced compilation warnings (no longer including internal headers) by including string.h directly.
Diffstat (limited to 'engines')
-rw-r--r--engines/e_4758_cca.c1
-rw-r--r--engines/e_atalla.c1
-rw-r--r--engines/e_cswift.c1
-rw-r--r--engines/e_sureware.c1
-rw-r--r--engines/e_ubsec.c1
5 files changed, 5 insertions, 0 deletions
diff --git a/engines/e_4758_cca.c b/engines/e_4758_cca.c
index 2e77f8c647..203a8a75e6 100644
--- a/engines/e_4758_cca.c
+++ b/engines/e_4758_cca.c
@@ -54,6 +54,7 @@
*/
#include <stdio.h>
+#include <string.h>
#include <openssl/crypto.h>
/* #include <openssl/pem.h> */
#include <openssl/dso.h>
diff --git a/engines/e_atalla.c b/engines/e_atalla.c
index be590f0ebb..65339a0d68 100644
--- a/engines/e_atalla.c
+++ b/engines/e_atalla.c
@@ -57,6 +57,7 @@
*/
#include <stdio.h>
+#include <string.h>
#include <openssl/crypto.h>
#include <openssl/buffer.h>
#include <openssl/dso.h>
diff --git a/engines/e_cswift.c b/engines/e_cswift.c
index 2ed9357f13..f3d3628366 100644
--- a/engines/e_cswift.c
+++ b/engines/e_cswift.c
@@ -57,6 +57,7 @@
*/
#include <stdio.h>
+#include <string.h>
#include <openssl/crypto.h>
#include <openssl/buffer.h>
#include <openssl/dso.h>
diff --git a/engines/e_sureware.c b/engines/e_sureware.c
index dced97c695..9c2279c195 100644
--- a/engines/e_sureware.c
+++ b/engines/e_sureware.c
@@ -51,6 +51,7 @@
====================================================================*/
#include <stdio.h>
+#include <string.h>
#include <openssl/crypto.h>
#include <openssl/pem.h>
#include <openssl/dso.h>
diff --git a/engines/e_ubsec.c b/engines/e_ubsec.c
index fe4a3b7ef7..35af495b71 100644
--- a/engines/e_ubsec.c
+++ b/engines/e_ubsec.c
@@ -59,6 +59,7 @@
*/
#include <stdio.h>
+#include <string.h>
#include <openssl/crypto.h>
#include <openssl/buffer.h>
#include <openssl/dso.h>