projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4e9023f
)
dynamic_ctrl() didn't have exactly the same prototype as defined by
author
Richard Levitte
<levitte@openssl.org>
Thu, 19 Jun 2003 16:57:38 +0000
(16:57 +0000)
committer
Richard Levitte
<levitte@openssl.org>
Thu, 19 Jun 2003 16:57:38 +0000
(16:57 +0000)
ENGINE_CTRL_FUNC_PTR.
crypto/engine/eng_dyn.c
patch
|
blob
|
history
diff --git
a/crypto/engine/eng_dyn.c
b/crypto/engine/eng_dyn.c
index 61ae230570dcc49ea7e6ae6d7ce3900af2c1cea7..3a1c200ce47e66659b40357559d4a93ae441e53e 100644
(file)
--- 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 */