summaryrefslogtreecommitdiffstats
path: root/crypto/err
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2011-06-21 16:58:10 +0000
committerDr. Stephen Henson <steve@openssl.org>2011-06-21 16:58:10 +0000
commit7397b35379e158b4e3303701c2c5b068344a0c96 (patch)
treeaacb755bf7955228f308c649fdc364c8879a284b /crypto/err
parentbaee44c3de6a4da10a6695963f7c6d1eff469e95 (diff)
Add FIPS error codes.
Diffstat (limited to 'crypto/err')
-rw-r--r--crypto/err/err_all.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/crypto/err/err_all.c b/crypto/err/err_all.c
index fc049e8e88..bd8946d8ba 100644
--- a/crypto/err/err_all.c
+++ b/crypto/err/err_all.c
@@ -104,6 +104,10 @@
#endif
#include <openssl/comp.h>
+#ifdef OPENSSL_FIPS
+#include <openssl/fips.h>
+#endif
+
void ERR_load_crypto_strings(void)
{
#ifndef OPENSSL_NO_ERR
@@ -157,4 +161,7 @@ void ERR_load_crypto_strings(void)
#endif
ERR_load_COMP_strings();
#endif
+#ifdef OPENSSL_FIPS
+ ERR_load_FIPS_strings();
+#endif
}