aboutsummaryrefslogtreecommitdiff
path: root/engines/e_dasync.c
diff options
context:
space:
mode:
Diffstat (limited to 'engines/e_dasync.c')
-rw-r--r--engines/e_dasync.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/engines/e_dasync.c b/engines/e_dasync.c
index 2f18d07..cca9f5e 100644
--- a/engines/e_dasync.c
+++ b/engines/e_dasync.c
@@ -59,6 +59,7 @@
#include <openssl/evp.h>
#include <openssl/async.h>
#include <openssl/bn.h>
+#include <openssl/crypto.h>
#define DASYNC_LIB_NAME "DASYNC"
#include "e_dasync_err.c"
@@ -72,7 +73,7 @@ static const char *engine_dasync_name = "Dummy Async engine support";
static int dasync_destroy(ENGINE *e);
static int dasync_init(ENGINE *e);
static int dasync_finish(ENGINE *e);
-void ENGINE_load_dasync(void);
+void engine_load_dasync_internal(void);
/* Set up digests. Just SHA1 for now */
@@ -210,7 +211,7 @@ static ENGINE *engine_dasync(void)
return ret;
}
-void ENGINE_load_dasync(void)
+void engine_load_dasync_internal(void)
{
ENGINE *toadd = engine_dasync();
if (!toadd)