summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRich Salz <rsalz@openssl.org>2016-09-16 12:07:36 -0400
committerRich Salz <rsalz@openssl.org>2016-10-21 04:37:10 -0400
commita3b94c9c2b577fa86a405e9119a75c785872f3b0 (patch)
tree51ce822f47e3317e48ff8f16a533346307eb09de
parent8afb9742aedc07e26f9930c1f859f8c0f204e77f (diff)
GH1546: Fix old names in cryptodev code.
Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/1584) (cherry picked from commit a8a8a917c0c0d36162fdc0cbf84ab17282cef3e9)
-rw-r--r--crypto/engine/eng_cryptodev.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/engine/eng_cryptodev.c b/crypto/engine/eng_cryptodev.c
index cd362bee89..d63c918c7f 100644
--- a/crypto/engine/eng_cryptodev.c
+++ b/crypto/engine/eng_cryptodev.c
@@ -856,10 +856,10 @@ cryptodev_engine_ciphers(ENGINE *e, const EVP_CIPHER **cipher,
*cipher = cryptodev_aes_ctr();
break;
case NID_aes_192_ctr:
- *cipher = cryptodev_aes_ctr_192();
+ *cipher = cryptodev_aes_192_ctr();
break;
case NID_aes_256_ctr:
- *cipher = cryptodev_aes_ctr_256();
+ *cipher = cryptodev_aes_256_ctr();
break;
# endif
default: