summaryrefslogtreecommitdiffstats
path: root/crypto/engine/eng_cryptodev.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 /crypto/engine/eng_cryptodev.c
parent5eb8f71204626843a5ff1e7016d5d9e5a9598ee8 (diff)
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 'crypto/engine/eng_cryptodev.c')
-rw-r--r--crypto/engine/eng_cryptodev.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/crypto/engine/eng_cryptodev.c b/crypto/engine/eng_cryptodev.c
index bb2ce9efa9..ab896d775a 100644
--- a/crypto/engine/eng_cryptodev.c
+++ b/crypto/engine/eng_cryptodev.c
@@ -63,7 +63,7 @@
#ifndef HAVE_CRYPTODEV
-void engine_load_cryptodev_internal(void)
+void int_engine_load_cryptodev(void)
{
/* This is a NOP on platforms without /dev/crypto */
return;
@@ -141,7 +141,7 @@ static int cryptodev_dh_compute_key(unsigned char *key, const BIGNUM *pub_key,
#endif
static int cryptodev_ctrl(ENGINE *e, int cmd, long i, void *p,
void (*f) (void));
-void engine_load_cryptodev_internal(void);
+void int_engine_load_cryptodev(void);
static const ENGINE_CMD_DEFN cryptodev_defns[] = {
{0, NULL, NULL, 0}
@@ -1628,7 +1628,7 @@ cryptodev_ctrl(ENGINE *e, int cmd, long i, void *p, void (*f) (void))
return (1);
}
-void engine_load_cryptodev_internal(void)
+void int_engine_load_cryptodev(void)
{
ENGINE *engine = ENGINE_new();
int fd;