Commit a8a8a917 authored by Rich Salz's avatar Rich Salz
Browse files

GH1546: Fix old names in cryptodev code.



Add DragonFly version of BSD.

Reviewed-by: default avatarMatt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/1584)
parent b85bf639
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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: