summaryrefslogtreecommitdiffstats
path: root/crypto/engine
diff options
context:
space:
mode:
authorLutz Jänicke <jaenicke@openssl.org>2002-06-13 17:40:27 +0000
committerLutz Jänicke <jaenicke@openssl.org>2002-06-13 17:40:27 +0000
commit40889b9cd36ba6233712d163c46154eba4a26ad7 (patch)
treef4a5ab0b224dbe89a38bf9528c1c41921a29ac30 /crypto/engine
parent99889b46c95711397389959a093f5556ebb39e4b (diff)
Add missing prototypes.
Submitted by: Goetz Babin-Ebell <babinebell@trustcenter.de> PR: 89
Diffstat (limited to 'crypto/engine')
-rw-r--r--crypto/engine/eng_cnf.c2
-rw-r--r--crypto/engine/eng_fat.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/crypto/engine/eng_cnf.c b/crypto/engine/eng_cnf.c
index 8c0ae8a1ad..cdf670901a 100644
--- a/crypto/engine/eng_cnf.c
+++ b/crypto/engine/eng_cnf.c
@@ -92,7 +92,7 @@ static int int_engine_init(ENGINE *e)
}
-int int_engine_configure(char *name, char *value, const CONF *cnf)
+static int int_engine_configure(char *name, char *value, const CONF *cnf)
{
int i;
int ret = 0;
diff --git a/crypto/engine/eng_fat.c b/crypto/engine/eng_fat.c
index d49aa7ed40..f7edb5ad32 100644
--- a/crypto/engine/eng_fat.c
+++ b/crypto/engine/eng_fat.c
@@ -84,7 +84,7 @@ int ENGINE_set_default(ENGINE *e, unsigned int flags)
/* Set default algorithms using a string */
-int int_def_cb(const char *alg, int len, void *arg)
+static int int_def_cb(const char *alg, int len, void *arg)
{
unsigned int *pflags = arg;
if (!strncmp(alg, "ALL", len))