diff options
author | Richard Levitte <levitte@openssl.org> | 2002-08-12 23:22:00 +0200 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2002-08-12 23:22:00 +0200 |
commit | 83348e0b80c2752b634a175a51f6850d3e7ade66 (patch) | |
tree | cacd8df3a9c5c92e9ac7d912337682d13c5bd3e9 /crypto/ripemd | |
parent | Do not use the word 'modulus', which is a class template name in VC++ 6.0/SP5. (diff) | |
download | openssl-83348e0b80c2752b634a175a51f6850d3e7ade66.tar.xz openssl-83348e0b80c2752b634a175a51f6850d3e7ade66.zip |
Do not include openssl/ripemd.h when the RIPEMD algorithm has been deselected.
PR: 216, point 1
Diffstat (limited to 'crypto/ripemd')
-rw-r--r-- | crypto/ripemd/rmdtest.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/ripemd/rmdtest.c b/crypto/ripemd/rmdtest.c index 19e9741db2..be1fb8b1f6 100644 --- a/crypto/ripemd/rmdtest.c +++ b/crypto/ripemd/rmdtest.c @@ -59,7 +59,6 @@ #include <stdio.h> #include <string.h> #include <stdlib.h> -#include <openssl/ripemd.h> #ifdef OPENSSL_NO_RIPEMD int main(int argc, char *argv[]) @@ -68,6 +67,7 @@ int main(int argc, char *argv[]) return(0); } #else +#include <openssl/ripemd.h> #include <openssl/evp.h> #ifdef CHARSET_EBCDIC |