aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/sha/shatest.c
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2005-04-30 21:51:41 +0000
committerAndy Polyakov <appro@openssl.org>2005-04-30 21:51:41 +0000
commit405d9761a5e023a9089bcf9ac4542deba4ab6fc2 (patch)
tree20f220bb785283bb00000d58ce1abd0518b7ee4f /crypto/sha/shatest.c
parent4c3a2d64e43901ae954d4e6382ac7995330c6dc0 (diff)
downloadopenssl-405d9761a5e023a9089bcf9ac4542deba4ab6fc2.tar.gz
Allow for ./config no-sha0 [from stable].
Diffstat (limited to 'crypto/sha/shatest.c')
-rw-r--r--crypto/sha/shatest.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/sha/shatest.c b/crypto/sha/shatest.c
index d007cf13ed..bfb11f0a5f 100644
--- a/crypto/sha/shatest.c
+++ b/crypto/sha/shatest.c
@@ -62,10 +62,10 @@
#include "../e_os.h"
-#ifdef OPENSSL_NO_SHA
+#if defined(OPENSSL_NO_SHA) || defined(OPENSSL_NO_SHA0)
int main(int argc, char *argv[])
{
- printf("No SHA support\n");
+ printf("No SHA0 support\n");
return(0);
}
#else