aboutsummaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
authorGeoff Thorpe <geoff@openssl.org>2001-10-08 17:06:52 +0000
committerGeoff Thorpe <geoff@openssl.org>2001-10-08 17:06:52 +0000
commit6d52f260bf3f058a4d1973027a503db66ef1ab82 (patch)
tree6de8aa9b47a4679169b32c5bf9831f10dd8e8c0c /crypto
parent752f2b6785eba8581171ee55c1eff7c350ac261f (diff)
downloadopenssl-6d52f260bf3f058a4d1973027a503db66ef1ab82.tar.gz
Make sure the "ENGINE_TABLE" cleanup callbacks have correct prototypes.
Diffstat (limited to 'crypto')
-rw-r--r--crypto/engine/tb_cipher.c2
-rw-r--r--crypto/engine/tb_dh.c2
-rw-r--r--crypto/engine/tb_digest.c2
-rw-r--r--crypto/engine/tb_dsa.c2
-rw-r--r--crypto/engine/tb_rand.c2
-rw-r--r--crypto/engine/tb_rsa.c2
6 files changed, 6 insertions, 6 deletions
diff --git a/crypto/engine/tb_cipher.c b/crypto/engine/tb_cipher.c
index 2716ed7a50..c5a50fc910 100644
--- a/crypto/engine/tb_cipher.c
+++ b/crypto/engine/tb_cipher.c
@@ -68,7 +68,7 @@ void ENGINE_unregister_ciphers(ENGINE *e)
engine_table_unregister(&cipher_table, e);
}
-static void engine_unregister_all_ciphers()
+static void engine_unregister_all_ciphers(void)
{
engine_table_cleanup(&cipher_table);
}
diff --git a/crypto/engine/tb_dh.c b/crypto/engine/tb_dh.c
index 977f9b9c39..c9347235ea 100644
--- a/crypto/engine/tb_dh.c
+++ b/crypto/engine/tb_dh.c
@@ -69,7 +69,7 @@ void ENGINE_unregister_DH(ENGINE *e)
engine_table_unregister(&dh_table, e);
}
-static void engine_unregister_all_DH()
+static void engine_unregister_all_DH(void)
{
engine_table_cleanup(&dh_table);
}
diff --git a/crypto/engine/tb_digest.c b/crypto/engine/tb_digest.c
index d2f502e1c8..2c4dd6f796 100644
--- a/crypto/engine/tb_digest.c
+++ b/crypto/engine/tb_digest.c
@@ -68,7 +68,7 @@ void ENGINE_unregister_digests(ENGINE *e)
engine_table_unregister(&digest_table, e);
}
-static void engine_unregister_all_digests()
+static void engine_unregister_all_digests(void)
{
engine_table_cleanup(&digest_table);
}
diff --git a/crypto/engine/tb_dsa.c b/crypto/engine/tb_dsa.c
index 1f6d035196..e9209476b8 100644
--- a/crypto/engine/tb_dsa.c
+++ b/crypto/engine/tb_dsa.c
@@ -69,7 +69,7 @@ void ENGINE_unregister_DSA(ENGINE *e)
engine_table_unregister(&dsa_table, e);
}
-static void engine_unregister_all_DSA()
+static void engine_unregister_all_DSA(void)
{
engine_table_cleanup(&dsa_table);
}
diff --git a/crypto/engine/tb_rand.c b/crypto/engine/tb_rand.c
index 827e104b27..0b1d031f1e 100644
--- a/crypto/engine/tb_rand.c
+++ b/crypto/engine/tb_rand.c
@@ -69,7 +69,7 @@ void ENGINE_unregister_RAND(ENGINE *e)
engine_table_unregister(&rand_table, e);
}
-static void engine_unregister_all_RAND()
+static void engine_unregister_all_RAND(void)
{
engine_table_cleanup(&rand_table);
}
diff --git a/crypto/engine/tb_rsa.c b/crypto/engine/tb_rsa.c
index 85049e8ae4..f84fea3968 100644
--- a/crypto/engine/tb_rsa.c
+++ b/crypto/engine/tb_rsa.c
@@ -69,7 +69,7 @@ void ENGINE_unregister_RSA(ENGINE *e)
engine_table_unregister(&rsa_table, e);
}
-static void engine_unregister_all_RSA()
+static void engine_unregister_all_RSA(void)
{
engine_table_cleanup(&rsa_table);
}