aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/engine/eng_table.c
diff options
context:
space:
mode:
authorGeoff Thorpe <geoff@openssl.org>2001-10-08 14:44:38 +0000
committerGeoff Thorpe <geoff@openssl.org>2001-10-08 14:44:38 +0000
commit752f2b6785eba8581171ee55c1eff7c350ac261f (patch)
treeeb7d39f3f35c1b66db01c769eef95dd346cf02b4 /crypto/engine/eng_table.c
parente1c279b63d3eb07ac6c0a34bf70d6fca139a6243 (diff)
downloadopenssl-752f2b6785eba8581171ee55c1eff7c350ac261f.tar.gz
Missing pointer in the eng_table_register function. Reported by
Martin Szotkowski.
Diffstat (limited to 'crypto/engine/eng_table.c')
-rw-r--r--crypto/engine/eng_table.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/engine/eng_table.c b/crypto/engine/eng_table.c
index f3210f4d4c..2e00f285d5 100644
--- a/crypto/engine/eng_table.c
+++ b/crypto/engine/eng_table.c
@@ -134,7 +134,7 @@ static int int_table_check(ENGINE_TABLE **t, int create)
/* Privately exposed (via eng_int.h) functions for adding and/or removing
* ENGINEs from the implementation table */
-int engine_table_register(ENGINE_TABLE **table, ENGINE_CLEANUP_CB cleanup,
+int engine_table_register(ENGINE_TABLE **table, ENGINE_CLEANUP_CB *cleanup,
ENGINE *e, const int *nids, int num_nids, int setdefault)
{
int ret = 0, added = 0;