From a99ce1a57481ff7de2971b9c5cc50c2613f4c420 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Thu, 26 Jun 2003 07:10:10 +0000 Subject: Conform with the standard prototype for engine control functions. --- engines/e_ubsec.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'engines/e_ubsec.c') diff --git a/engines/e_ubsec.c b/engines/e_ubsec.c index b019714..0944588 100644 --- a/engines/e_ubsec.c +++ b/engines/e_ubsec.c @@ -82,7 +82,7 @@ static int ubsec_destroy(ENGINE *e); static int ubsec_init(ENGINE *e); static int ubsec_finish(ENGINE *e); -static int ubsec_ctrl(ENGINE *e, int cmd, long i, void *p, void (*f)()); +static int ubsec_ctrl(ENGINE *e, int cmd, long i, void *p, void (*f)(void)); static int ubsec_mod_exp(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, const BIGNUM *m, BN_CTX *ctx); static int ubsec_mod_exp_crt(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, @@ -518,7 +518,7 @@ static int ubsec_finish(ENGINE *e) return 1; } -static int ubsec_ctrl(ENGINE *e, int cmd, long i, void *p, void (*f)()) +static int ubsec_ctrl(ENGINE *e, int cmd, long i, void *p, void (*f)(void)) { int initialised = ((ubsec_dso == NULL) ? 0 : 1); switch(cmd) -- cgit v1.1