summaryrefslogtreecommitdiffstats
path: root/crypto/evp
diff options
context:
space:
mode:
authorCristian Stoica <cristian.stoica@freescale.com>2013-09-10 12:46:46 +0300
committerRichard Levitte <levitte@openssl.org>2016-07-05 22:56:45 +0200
commit6c6bd9bc2f972ebadc6a326f7864b3f2edc40b5b (patch)
tree6d64b24a8306eb0c91893126a236fa1d709e3912 /crypto/evp
parent77857ddcca41e1ad34725715fe7b32adc4de7930 (diff)
remove double initialization of cryptodev engine
cryptodev engine is initialized together with the other engines in ENGINE_load_builtin_engines. The initialization done through OpenSSL_add_all_algorithms is redundant. Signed-off-by: Cristian Stoica <cristian.stoica@nxp.com> Reviewed-by: Rich Salz <rsalz@openssl.org> Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'crypto/evp')
-rw-r--r--crypto/evp/c_all.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/crypto/evp/c_all.c b/crypto/evp/c_all.c
index a3ed00d4c1..719e34d22f 100644
--- a/crypto/evp/c_all.c
+++ b/crypto/evp/c_all.c
@@ -82,9 +82,4 @@ void OPENSSL_add_all_algorithms_noconf(void)
OPENSSL_cpuid_setup();
OpenSSL_add_all_ciphers();
OpenSSL_add_all_digests();
-#ifndef OPENSSL_NO_ENGINE
-# if defined(__OpenBSD__) || defined(__FreeBSD__) || defined(HAVE_CRYPTODEV)
- ENGINE_setup_bsd_cryptodev();
-# endif
-#endif
}