Index: nss/lib/certdb/crl.c |
=================================================================== |
--- nss/lib/certdb/crl.c (revision 203524) |
+++ nss/lib/certdb/crl.c (working copy) |
@@ -304,12 +304,12 @@ |
* DER crl. |
*/ |
SECStatus |
-CERT_KeyFromDERCrl(PRArenaPool *arena, SECItem *derCrl, SECItem *key) |
+CERT_KeyFromDERCrl(PLArenaPool *arena, SECItem *derCrl, SECItem *key) |
{ |
SECStatus rv; |
CERTSignedData sd; |
CERTCrlKey crlkey; |
- PRArenaPool* myArena; |
+ PLArenaPool* myArena; |
if (!arena) { |
/* arena needed for QuickDER */ |
@@ -392,10 +392,10 @@ |
* allow reusing the input DER without making a copy |
*/ |
CERTSignedCrl * |
-CERT_DecodeDERCrlWithFlags(PRArenaPool *narena, SECItem *derSignedCrl, |
+CERT_DecodeDERCrlWithFlags(PLArenaPool *narena, SECItem *derSignedCrl, |
int type, PRInt32 options) |
{ |
- PRArenaPool *arena; |
+ PLArenaPool *arena; |
CERTSignedCrl *crl; |
SECStatus rv; |
OpaqueCRLFields* extended = NULL; |
@@ -532,7 +532,7 @@ |
* take a DER CRL and decode it into a CRL structure |
*/ |
CERTSignedCrl * |
-CERT_DecodeDERCrl(PRArenaPool *narena, SECItem *derSignedCrl, int type) |
+CERT_DecodeDERCrl(PLArenaPool *narena, SECItem *derSignedCrl, int type) |
{ |
return CERT_DecodeDERCrlWithFlags(narena, derSignedCrl, type, |
CRL_DECODE_DEFAULT_OPTIONS); |
@@ -720,7 +720,7 @@ |
CERTSignedCrl * |
SEC_FindCrlByDERCert(CERTCertDBHandle *handle, SECItem *derCrl, int type) |
{ |
- PRArenaPool *arena; |
+ PLArenaPool *arena; |
SECItem crlKey; |
SECStatus rv; |
CERTSignedCrl *crl = NULL; |
@@ -781,7 +781,7 @@ |
SEC_LookupCrls(CERTCertDBHandle *handle, CERTCrlHeadNode **nodes, int type) |
{ |
CERTCrlHeadNode *head; |
- PRArenaPool *arena = NULL; |
+ PLArenaPool *arena = NULL; |
SECStatus rv; |
*nodes = NULL; |
@@ -959,7 +959,7 @@ |
/* constructor for PreAllocator object */ |
PreAllocator* PreAllocator_Create(PRSize size) |
{ |
- PRArenaPool* arena = NULL; |
+ PLArenaPool* arena = NULL; |
PreAllocator* prebuffer = NULL; |
arena = PORT_NewArena(DER_DEFAULT_CHUNKSIZE); |
if (!arena) |