summaryrefslogtreecommitdiff
path: root/engines/e_dasync.c
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2016-04-06 10:39:00 +0100
committerMatt Caswell <matt@openssl.org>2016-04-13 08:52:34 +0100
commit342c21cd8bb42b6750abfc49cac26dc288de98c3 (patch)
tree39edffbda0bcf71d4eea518a5f0a9138c73f7aca /engines/e_dasync.c
parent5eb8f71204626843a5ff1e7016d5d9e5a9598ee8 (diff)
downloadopenssl-new-342c21cd8bb42b6750abfc49cac26dc288de98c3.tar.gz
Rename lots of *_intern or *_internal function to int_*
There was a lot of naming inconsistency, so we try and standardise on one form. Reviewed-by: Tim Hudson <tjh@openssl.org> Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'engines/e_dasync.c')
-rw-r--r--engines/e_dasync.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/e_dasync.c b/engines/e_dasync.c
index 2ee7d6363d..61559544d8 100644
--- a/engines/e_dasync.c
+++ b/engines/e_dasync.c
@@ -86,7 +86,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_internal(void);
+void int_engine_load_dasync(void);
/* Set up digests. Just SHA1 for now */
@@ -347,7 +347,7 @@ static ENGINE *engine_dasync(void)
return ret;
}
-void engine_load_dasync_internal(void)
+void int_engine_load_dasync(void)
{
ENGINE *toadd = engine_dasync();
if (!toadd)