Revert "Update NSS to 3.35-RTM"

This reverts commit f1a0f0a56fdd0fc39f255174ce08c06b91c66c94.
This commit is contained in:
wolfbeast 2018-04-25 21:33:33 +02:00 • committed by Roy Tam
commit 9e32522120
388 changed files with 24887 additions and 43210 deletions

View file

@ -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;