dynamic_ctrl() didn't have exactly the same prototype as defined by
authorRichard Levitte <levitte@openssl.org>
Thu, 19 Jun 2003 16:57:38 +0000 (16:57 +0000)
committerRichard Levitte <levitte@openssl.org>
Thu, 19 Jun 2003 16:57:38 +0000 (16:57 +0000)
ENGINE_CTRL_FUNC_PTR.

crypto/engine/eng_dyn.c

index 61ae230570dcc49ea7e6ae6d7ce3900af2c1cea7..3a1c200ce47e66659b40357559d4a93ae441e53e 100644 (file)
@@ -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 */