aboutsummaryrefslogtreecommitdiff
path: root/crypto/openssl/crypto/sha/sha1dgst.c
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/openssl/crypto/sha/sha1dgst.c')
-rw-r--r--crypto/openssl/crypto/sha/sha1dgst.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/crypto/openssl/crypto/sha/sha1dgst.c b/crypto/openssl/crypto/sha/sha1dgst.c
index 182f65982ab0..1e2009b76081 100644
--- a/crypto/openssl/crypto/sha/sha1dgst.c
+++ b/crypto/openssl/crypto/sha/sha1dgst.c
@@ -62,12 +62,20 @@
#define SHA_1
#include <openssl/opensslv.h>
+#include <openssl/opensslconf.h>
+#ifndef OPENSSL_FIPS
const char *SHA1_version="SHA1" OPENSSL_VERSION_PTEXT;
/* The implementation is in ../md32_common.h */
#include "sha_locl.h"
+#else /* ndef OPENSSL_FIPS */
+
+static void *dummy=&dummy;
+
+#endif /* ndef OPENSSL_FIPS */
+
#endif