summaryrefslogtreecommitdiff
path: root/crypto/pkcs7/verify.c
diff options
context:
space:
mode:
authorlevitte <levitte>2001-02-19 16:01:52 +0000
committerlevitte <levitte>2001-02-19 16:01:52 +0000
commitb27f02d7f2080104350b45fd295bbbbea18c0125 (patch)
treecdaae5f46cb592a237efa2565a21242e10fc12ce /crypto/pkcs7/verify.c
parente86dea9f859b4c48da110ed94cbfec794ac7f910 (diff)
downloadopenssl-b27f02d7f2080104350b45fd295bbbbea18c0125.tar.gz
Make all configuration macros available for application by making
sure they are available in opensslconf.h, by giving them names starting with "OPENSSL_" to avoid conflicts with other packages and by making sure e_os2.h will cover all platform-specific cases together with opensslconf.h. I've checked fairly well that nothing breaks with this (apart from external software that will adapt if they have used something like NO_KRB5), but I can't guarantee it completely, so a review of this change would be a good thing.
Diffstat (limited to 'crypto/pkcs7/verify.c')
-rw-r--r--crypto/pkcs7/verify.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/crypto/pkcs7/verify.c b/crypto/pkcs7/verify.c
index 49fc8d8be..5f7afe893 100644
--- a/crypto/pkcs7/verify.c
+++ b/crypto/pkcs7/verify.c
@@ -85,16 +85,16 @@ char *argv[];
bio_err=BIO_new_fp(stderr,BIO_NOCLOSE);
bio_out=BIO_new_fp(stdout,BIO_NOCLOSE);
-#ifndef NO_MD2
+#ifndef OPENSSL_NO_MD2
EVP_add_digest(EVP_md2());
#endif
-#ifndef NO_MD5
+#ifndef OPENSSL_NO_MD5
EVP_add_digest(EVP_md5());
#endif
-#ifndef NO_SHA1
+#ifndef OPENSSL_NO_SHA1
EVP_add_digest(EVP_sha1());
#endif
-#ifndef NO_MDC2
+#ifndef OPENSSL_NO_MDC2
EVP_add_digest(EVP_mdc2());
#endif