From: Dr. Stephen Henson Date: Thu, 23 Aug 2001 23:52:38 +0000 (+0000) Subject: Add #ifdefs to some devcrypto code X-Git-Tag: OpenSSL_0_9_6c~131^2~3 X-Git-Url: https://git.openssl.org/?p=openssl.git;a=commitdiff_plain;h=3132ab8ce690bc6c10e58006d1afce3a5acf0549;ds=inline Add #ifdefs to some devcrypto code --- diff --git a/crypto/engine/hw_openbsd_dev_crypto.c b/crypto/engine/hw_openbsd_dev_crypto.c index b3e1d0e240..6c8fdb6956 100644 --- a/crypto/engine/hw_openbsd_dev_crypto.c +++ b/crypto/engine/hw_openbsd_dev_crypto.c @@ -57,6 +57,8 @@ #include #include "engine_int.h" +#ifdef OPENSSL_OPENBSD_DEV_CRYPTO + static void load_ciphers(ENGINE *e) { ENGINE_add_cipher(e,EVP_dev_crypto_des_ede3_cbc()); @@ -78,3 +80,4 @@ ENGINE *ENGINE_openbsd_dev_crypto(void) return engine; } +#endif