summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNils Larsch <nils@openssl.org>2005-05-20 22:55:10 +0000
committerNils Larsch <nils@openssl.org>2005-05-20 22:55:10 +0000
commitbbbd67108f6cb6224b0725095a69bfc391011411 (patch)
treed9982afaf7efb86266971e6da982d966904e91a5
parent7f246621b5b8802a12e3bf06ae6c0473d74daefb (diff)
fix typo, add prototype
-rw-r--r--crypto/ec/ec_lib.c2
-rw-r--r--crypto/ecdh/ech_lib.c3
-rw-r--r--crypto/ecdsa/ecs_lib.c3
3 files changed, 5 insertions, 3 deletions
diff --git a/crypto/ec/ec_lib.c b/crypto/ec/ec_lib.c
index 6d3a562690..3c6967ae15 100644
--- a/crypto/ec/ec_lib.c
+++ b/crypto/ec/ec_lib.c
@@ -622,7 +622,7 @@ void EC_EX_DATA_free_data(EC_EXTRA_DATA **ex_data,
}
/* this has 'package' visibility */
-void EC_EX_DATA_clear_free_extra_data(EC_EXTRA_DATA **ex_data,
+void EC_EX_DATA_clear_free_data(EC_EXTRA_DATA **ex_data,
void *(*dup_func)(void *), void (*free_func)(void *), void (*clear_free_func)(void *))
{
EC_EXTRA_DATA **p;
diff --git a/crypto/ecdh/ech_lib.c b/crypto/ecdh/ech_lib.c
index 85fbfc5cac..01e75e2a5c 100644
--- a/crypto/ecdh/ech_lib.c
+++ b/crypto/ecdh/ech_lib.c
@@ -78,6 +78,7 @@ const char *ECDH_version="ECDH" OPENSSL_VERSION_PTEXT;
static const ECDH_METHOD *default_ECDH_method = NULL;
+static void *ecdh_data_new(void);
static void *ecdh_data_dup(void *);
static void ecdh_data_free(void *);
@@ -167,7 +168,7 @@ static ECDH_DATA *ECDH_DATA_new_method(ENGINE *engine)
return(ret);
}
-void *ecdh_data_new(void)
+static void *ecdh_data_new(void)
{
return (void *)ECDH_DATA_new_method(NULL);
}
diff --git a/crypto/ecdsa/ecs_lib.c b/crypto/ecdsa/ecs_lib.c
index 8a6d4ad45d..ab96a6dc9c 100644
--- a/crypto/ecdsa/ecs_lib.c
+++ b/crypto/ecdsa/ecs_lib.c
@@ -65,6 +65,7 @@ const char *ECDSA_version="ECDSA" OPENSSL_VERSION_PTEXT;
static const ECDSA_METHOD *default_ECDSA_method = NULL;
+static void *ecdsa_data_new(void);
static void *ecdsa_data_dup(void *);
static void ecdsa_data_free(void *);
@@ -147,7 +148,7 @@ static ECDSA_DATA *ECDSA_DATA_new_method(ENGINE *engine)
return(ret);
}
-void *ecdsa_data_new(void)
+static void *ecdsa_data_new(void)
{
return (void *)ECDSA_DATA_new_method(NULL);
}