From 6d52f260bf3f058a4d1973027a503db66ef1ab82 Mon Sep 17 00:00:00 2001 From: Geoff Thorpe Date: Mon, 8 Oct 2001 17:06:52 +0000 Subject: [PATCH] Make sure the "ENGINE_TABLE" cleanup callbacks have correct prototypes. --- crypto/engine/tb_cipher.c | 2 +- crypto/engine/tb_dh.c | 2 +- crypto/engine/tb_digest.c | 2 +- crypto/engine/tb_dsa.c | 2 +- crypto/engine/tb_rand.c | 2 +- crypto/engine/tb_rsa.c | 2 +- 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); } -- 2.34.1