summaryrefslogtreecommitdiffstats
path: root/crypto/evp/e_old.c
diff options
context:
space:
mode:
authorGeoff Thorpe <geoff@openssl.org>2004-05-15 18:26:15 +0000
committerGeoff Thorpe <geoff@openssl.org>2004-05-15 18:26:15 +0000
commit7771b6c5b5cfeaab5eb0dca6f9ddb1dae0389f2d (patch)
treee1b415420391b72516c7036b5fe6486b6d0939f4 /crypto/evp/e_old.c
parent4843acc868d09de38b596bd94f85f30bcdafdb8a (diff)
This file implements various functions that have since been redefined as
macros. I'm removing this from the NO_DEPRECATED build.
Diffstat (limited to 'crypto/evp/e_old.c')
-rw-r--r--crypto/evp/e_old.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/crypto/evp/e_old.c b/crypto/evp/e_old.c
index 4f217368bd..66f3bf4276 100644
--- a/crypto/evp/e_old.c
+++ b/crypto/evp/e_old.c
@@ -56,6 +56,10 @@
*
*/
+#ifdef OPENSSL_NO_DEPRECATED
+static void *dummy = &dummy;
+#else
+
#include <openssl/evp.h>
/* Define some deprecated functions, so older programs
@@ -106,3 +110,5 @@ const EVP_CIPHER *EVP_aes_192_cfb(void) { return EVP_aes_192_cfb128(); }
#undef EVP_aes_256_cfb
const EVP_CIPHER *EVP_aes_256_cfb(void) { return EVP_aes_256_cfb128(); }
#endif
+
+#endif