diff options
Diffstat (limited to 'src/lib/libcrypto/sha/sha1dgst.c')
-rw-r--r-- | src/lib/libcrypto/sha/sha1dgst.c | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/src/lib/libcrypto/sha/sha1dgst.c b/src/lib/libcrypto/sha/sha1dgst.c index 1e2009b760..50d1925cde 100644 --- a/src/lib/libcrypto/sha/sha1dgst.c +++ b/src/lib/libcrypto/sha/sha1dgst.c | |||
@@ -56,26 +56,19 @@ | |||
56 | * [including the GNU Public Licence.] | 56 | * [including the GNU Public Licence.] |
57 | */ | 57 | */ |
58 | 58 | ||
59 | #include <openssl/opensslconf.h> | ||
59 | #if !defined(OPENSSL_NO_SHA1) && !defined(OPENSSL_NO_SHA) | 60 | #if !defined(OPENSSL_NO_SHA1) && !defined(OPENSSL_NO_SHA) |
60 | 61 | ||
61 | #undef SHA_0 | 62 | #undef SHA_0 |
62 | #define SHA_1 | 63 | #define SHA_1 |
63 | 64 | ||
64 | #include <openssl/opensslv.h> | 65 | #include <openssl/opensslv.h> |
65 | #include <openssl/opensslconf.h> | ||
66 | 66 | ||
67 | #ifndef OPENSSL_FIPS | 67 | const char SHA1_version[]="SHA1" OPENSSL_VERSION_PTEXT; |
68 | const char *SHA1_version="SHA1" OPENSSL_VERSION_PTEXT; | ||
69 | 68 | ||
70 | /* The implementation is in ../md32_common.h */ | 69 | /* The implementation is in ../md32_common.h */ |
71 | 70 | ||
72 | #include "sha_locl.h" | 71 | #include "sha_locl.h" |
73 | 72 | ||
74 | #else /* ndef OPENSSL_FIPS */ | ||
75 | |||
76 | static void *dummy=&dummy; | ||
77 | |||
78 | #endif /* ndef OPENSSL_FIPS */ | ||
79 | |||
80 | #endif | 73 | #endif |
81 | 74 | ||