summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwtc%netscape.com <devnull@localhost>2002-09-05 16:34:27 +0000
committerwtc%netscape.com <devnull@localhost>2002-09-05 16:34:27 +0000
commit36e7b1d0d0d44baa99988c7f63b8c5cb6a73c2d1 (patch)
tree1225289a849e86b88e917c81187ec1af6c68c67f
parentba1b4a91f156e34c6a7461fbbdec8ece36de546a (diff)
downloadnss-hg-36e7b1d0d0d44baa99988c7f63b8c5cb6a73c2d1.tar.gz
Fixed unresolved symbol DPCache_Refresh, which I believe is a misspelling
of DP_RefreshCache.
-rw-r--r--security/nss/lib/certdb/crl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/security/nss/lib/certdb/crl.c b/security/nss/lib/certdb/crl.c
index d91af7816..f21a3ba73 100644
--- a/security/nss/lib/certdb/crl.c
+++ b/security/nss/lib/certdb/crl.c
@@ -1341,7 +1341,7 @@ SECStatus DPCache_Update(CRLDPCache* cache, CERTCertificate* issuer, int64 t,
for (i = 0; i < cache->ncrls ; i++) {
CERTSignedCrl* acrl = cache->crls[i];
if (PR_FALSE == GetOpaqueCRLFields(acrl)->bad) {
- DPCache_Refresh(cache, acrl, t, wincx);
+ DP_RefreshCache(cache, acrl, t, wincx);
}
}
}