From ed33538220ae7f2e596fd7cb484cd2a19a1d5340 Mon Sep 17 00:00:00 2001 From: "wtc%netscape.com" Date: Thu, 5 Sep 2002 16:34:27 +0000 Subject: [PATCH] Fixed unresolved symbol DPCache_Refresh, which I believe is a misspelling of DP_RefreshCache. git-svn-id: svn://10.0.0.236/trunk@128879 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/security/nss/lib/certdb/crl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mozilla/security/nss/lib/certdb/crl.c b/mozilla/security/nss/lib/certdb/crl.c index eea798f1465..2bea1ce3fb5 100644 --- a/mozilla/security/nss/lib/certdb/crl.c +++ b/mozilla/security/nss/lib/certdb/crl.c @@ -34,7 +34,7 @@ /* * Moved from secpkcs7.c * - * $Id: crl.c,v 1.17 2002-09-05 06:12:33 jpierre%netscape.com Exp $ + * $Id: crl.c,v 1.18 2002-09-05 16:34:27 wtc%netscape.com Exp $ */ #include "cert.h" @@ -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); } } }