summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsteve <steve>2011-05-12 14:28:08 +0000
committersteve <steve>2011-05-12 14:28:08 +0000
commite6d6d24a2c6d084fd8ff9cb8971c4c3d7c66018f (patch)
tree91705654415503aa42b5375feab36f3da295481e
parent940ecac7a8a6248cee1582c3957df6b1b07a6e58 (diff)
downloadopenssl-e6d6d24a2c6d084fd8ff9cb8971c4c3d7c66018f.tar.gz
Fix error discrepancy.
-rw-r--r--crypto/fips_err.h2
-rw-r--r--fips/fips.c6
-rw-r--r--fips/fips.h2
3 files changed, 5 insertions, 5 deletions
diff --git a/crypto/fips_err.h b/crypto/fips_err.h
index dfb24ca6f..21b820c69 100644
--- a/crypto/fips_err.h
+++ b/crypto/fips_err.h
@@ -102,7 +102,7 @@ static ERR_STRING_DATA FIPS_str_functs[]=
{ERR_FUNC(FIPS_F_FIPS_DSA_SIGN_DIGEST), "FIPS_dsa_sign_digest"},
{ERR_FUNC(FIPS_F_FIPS_DSA_VERIFY_DIGEST), "FIPS_dsa_verify_digest"},
{ERR_FUNC(FIPS_F_FIPS_GET_ENTROPY), "FIPS_GET_ENTROPY"},
-{ERR_FUNC(FIPS_F_FIPS_MODE_SET), "FIPS_mode_set"},
+{ERR_FUNC(FIPS_F_FIPS_MODULE_MODE_SET), "FIPS_module_mode_set"},
{ERR_FUNC(FIPS_F_FIPS_PKEY_SIGNATURE_TEST), "fips_pkey_signature_test"},
{ERR_FUNC(FIPS_F_FIPS_RAND_ADD), "FIPS_rand_add"},
{ERR_FUNC(FIPS_F_FIPS_RAND_BYTES), "FIPS_rand_bytes"},
diff --git a/fips/fips.c b/fips/fips.c
index 2cb6866d6..09accac83 100644
--- a/fips/fips.c
+++ b/fips/fips.c
@@ -256,7 +256,7 @@ int FIPS_module_mode_set(int onoff)
seeding */
if(FIPS_module_mode())
{
- FIPSerr(FIPS_F_FIPS_MODE_SET,FIPS_R_FIPS_MODE_ALREADY_SET);
+ FIPSerr(FIPS_F_FIPS_MODULE_MODE_SET,FIPS_R_FIPS_MODE_ALREADY_SET);
fips_selftest_fail = 1;
ret = 0;
goto end;
@@ -265,7 +265,7 @@ int FIPS_module_mode_set(int onoff)
#ifdef OPENSSL_IA32_SSE2
if ((OPENSSL_ia32cap & (1<<25|1<<26)) != (1<<25|1<<26))
{
- FIPSerr(FIPS_F_FIPS_MODE_SET,FIPS_R_UNSUPPORTED_PLATFORM);
+ FIPSerr(FIPS_F_FIPS_MODULE_MODE_SET,FIPS_R_UNSUPPORTED_PLATFORM);
fips_selftest_fail = 1;
ret = 0;
goto end;
@@ -274,7 +274,7 @@ int FIPS_module_mode_set(int onoff)
if(fips_signature_witness() != FIPS_signature)
{
- FIPSerr(FIPS_F_FIPS_MODE_SET,FIPS_R_CONTRADICTING_EVIDENCE);
+ FIPSerr(FIPS_F_FIPS_MODULE_MODE_SET,FIPS_R_CONTRADICTING_EVIDENCE);
fips_selftest_fail = 1;
ret = 0;
goto end;
diff --git a/fips/fips.h b/fips/fips.h
index d07d19040..85a6f2574 100644
--- a/fips/fips.h
+++ b/fips/fips.h
@@ -268,7 +268,7 @@ void ERR_load_FIPS_strings(void);
#define FIPS_F_FIPS_DSA_SIGN_DIGEST 154
#define FIPS_F_FIPS_DSA_VERIFY_DIGEST 155
#define FIPS_F_FIPS_GET_ENTROPY 147
-#define FIPS_F_FIPS_MODE_SET 120
+#define FIPS_F_FIPS_MODULE_MODE_SET 120
#define FIPS_F_FIPS_PKEY_SIGNATURE_TEST 121
#define FIPS_F_FIPS_RAND_ADD 122
#define FIPS_F_FIPS_RAND_BYTES 123