diff options
Diffstat (limited to 'security/nss/lib/freebl/nsslowhash.c')
-rw-r--r-- | security/nss/lib/freebl/nsslowhash.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/security/nss/lib/freebl/nsslowhash.c b/security/nss/lib/freebl/nsslowhash.c index 22f97810f..5ed039689 100644 --- a/security/nss/lib/freebl/nsslowhash.c +++ b/security/nss/lib/freebl/nsslowhash.c @@ -22,7 +22,6 @@ struct NSSLOWHASHContextStr { void *hashCtxt; }; -#ifndef NSS_FIPS_DISABLED static int nsslow_GetFIPSEnabled(void) { @@ -41,10 +40,9 @@ nsslow_GetFIPSEnabled(void) return 0; if (d != '1') return 0; -#endif /* LINUX */ +#endif return 1; } -#endif /* NSS_FIPS_DISABLED */ static NSSLOWInitContext dummyContext = { 0 }; static PRBool post_failed = PR_TRUE; @@ -56,7 +54,6 @@ NSSLOW_Init(void) (void)FREEBL_InitStubs(); #endif -#ifndef NSS_FIPS_DISABLED /* make sure the FIPS product is installed if we are trying to * go into FIPS mode */ if (nsslow_GetFIPSEnabled()) { @@ -66,7 +63,6 @@ NSSLOW_Init(void) return NULL; } } -#endif post_failed = PR_FALSE; return &dummyContext; |