From: Richard Levitte Date: Thu, 19 Jun 2003 16:57:38 +0000 (+0000) Subject: dynamic_ctrl() didn't have exactly the same prototype as defined by X-Git-Tag: BEN_FIPS_TEST_1~38^2~47 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=834ac33a3778bf5aa2c972d60e833bc6f83169df;p=oweals%2Fopenssl.git dynamic_ctrl() didn't have exactly the same prototype as defined by ENGINE_CTRL_FUNC_PTR. --- diff --git a/crypto/engine/eng_dyn.c b/crypto/engine/eng_dyn.c index 61ae230570..3a1c200ce4 100644 --- a/crypto/engine/eng_dyn.c +++ b/crypto/engine/eng_dyn.c @@ -70,7 +70,7 @@ /* Our ENGINE handlers */ static int dynamic_init(ENGINE *e); static int dynamic_finish(ENGINE *e); -static int dynamic_ctrl(ENGINE *e, int cmd, long i, void *p, void (*f)()); +static int dynamic_ctrl(ENGINE *e, int cmd, long i, void *p, void (*f)(void)); /* Predeclare our context type */ typedef struct st_dynamic_data_ctx dynamic_data_ctx; /* The implementation for the important control command */