projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4843acc
)
This file implements various functions that have since been redefined as
author
Geoff Thorpe
<geoff@openssl.org>
Sat, 15 May 2004 18:26:15 +0000
(18:26 +0000)
committer
Geoff Thorpe
<geoff@openssl.org>
Sat, 15 May 2004 18:26:15 +0000
(18:26 +0000)
macros. I'm removing this from the NO_DEPRECATED build.
crypto/evp/e_old.c
patch
|
blob
|
history
diff --git
a/crypto/evp/e_old.c
b/crypto/evp/e_old.c
index 4f217368bdcec10fd32e90ba6cad75c7746fb1d8..66f3bf427661c29c847829c0b4fd261d9f2f3db0 100644
(file)
--- 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