Index: nss/lib/certdb/certxutl.c |
=================================================================== |
--- nss/lib/certdb/certxutl.c (revision 203524) |
+++ nss/lib/certdb/certxutl.c (working copy) |
@@ -111,8 +111,8 @@ |
typedef struct { |
void (*setExts)(void *object, CERTCertExtension **exts); |
void *object; |
- PRArenaPool *ownerArena; |
- PRArenaPool *arena; |
+ PLArenaPool *ownerArena; |
+ PLArenaPool *arena; |
extNode *head; |
int count; |
}extRec; |
@@ -124,10 +124,10 @@ |
* about callers data structures (owner objects) |
*/ |
void * |
-cert_StartExtensions(void *owner, PRArenaPool *ownerArena, |
+cert_StartExtensions(void *owner, PLArenaPool *ownerArena, |
void (*setExts)(void *object, CERTCertExtension **exts)) |
{ |
- PRArenaPool *arena; |
+ PLArenaPool *arena; |
extRec *handle; |
arena = PORT_NewArena(DER_DEFAULT_CHUNKSIZE); |
@@ -397,7 +397,7 @@ |
{ |
SECItem wrapperItem, tmpItem = {siBuffer,0}; |
SECStatus rv; |
- PRArenaPool *arena = NULL; |
+ PLArenaPool *arena = NULL; |
wrapperItem.data = NULL; |
tmpItem.data = NULL; |