Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2)

Unified Diff: nss/lib/certdb/crl.c

Issue 13898013: Update NSS to NSS_3_15_BETA2. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/nss/
Patch Set: Update NSS versions and tag in README.chromium Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: nss/lib/certdb/crl.c
===================================================================
--- nss/lib/certdb/crl.c (revision 195639)
+++ nss/lib/certdb/crl.c (working copy)
@@ -1695,7 +1695,7 @@
return rv;
}
-static SECStatus CachedCrl_GetEntry(CachedCrl* crl, SECItem* sn,
+static SECStatus CachedCrl_GetEntry(CachedCrl* crl, const SECItem* sn,
CERTCrlEntry** returned)
{
CERTCrlEntry* acrlEntry;
@@ -1722,7 +1722,7 @@
}
/* check if a particular SN is in the CRL cache and return its entry */
-dpcacheStatus DPCache_Lookup(CRLDPCache* cache, SECItem* sn,
+dpcacheStatus DPCache_Lookup(CRLDPCache* cache, const SECItem* sn,
CERTCrlEntry** returned)
{
SECStatus rv;
@@ -2631,7 +2631,7 @@
*revReason = reason;
}
- if (t && SECSuccess != CERT_CheckCertValidTimes(issuer, t, PR_FALSE))
+ if (t && secCertTimeValid != CERT_CheckCertValidTimes(issuer, t, PR_FALSE))
{
/* we won't be able to check the CRL's signature if the issuer cert
is expired as of the time we are verifying. This may cause a valid
« no previous file with comments | « nss/lib/certdb/certv3.c ('k') | nss/lib/certdb/genname.h » ('j') | nss/lib/certdb/genname.c » ('J')

Powered by Google App Engine
This is Rietveld 408576698