[openssl-commits] [openssl] master update

Rich Salz rsalz at openssl.org
Fri Oct 21 08:36:58 UTC 2016


The branch master has been updated
       via  a8a8a917c0c0d36162fdc0cbf84ab17282cef3e9 (commit)
      from  b85bf6395251dc28457b95de586a2f0a5faae4af (commit)


- Log -----------------------------------------------------------------
commit a8a8a917c0c0d36162fdc0cbf84ab17282cef3e9
Author: Rich Salz <rsalz at openssl.org>
Date:   Fri Sep 16 12:07:36 2016 -0400

    GH1546: Fix old names in cryptodev code.
    
    Add DragonFly version of BSD.
    
    Reviewed-by: Matt Caswell <matt at openssl.org>
    (Merged from https://github.com/openssl/openssl/pull/1584)

-----------------------------------------------------------------------

Summary of changes:
 crypto/engine/eng_cryptodev.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/crypto/engine/eng_cryptodev.c b/crypto/engine/eng_cryptodev.c
index cd362be..d63c918 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:


More information about the openssl-commits mailing list