Index: nss/lib/certhigh/crlv2.c |
=================================================================== |
--- nss/lib/certhigh/crlv2.c (revision 203524) |
+++ nss/lib/certhigh/crlv2.c (working copy) |
@@ -58,7 +58,7 @@ |
return (cert_StartExtensions (entry, crl->arena, SetCrlEntryExts)); |
} |
-SECStatus CERT_FindCRLNumberExten (PRArenaPool *arena, CERTCrl *crl, |
+SECStatus CERT_FindCRLNumberExten (PLArenaPool *arena, CERTCrl *crl, |
SECItem *value) |
{ |
SECItem encodedExtenValue; |
@@ -100,7 +100,7 @@ |
SECItem wrapperItem = {siBuffer,0}; |
SECItem tmpItem = {siBuffer,0}; |
SECStatus rv; |
- PRArenaPool *arena = NULL; |
+ PLArenaPool *arena = NULL; |
arena = PORT_NewArena(DER_DEFAULT_CHUNKSIZE); |
if ( ! arena ) { |
@@ -135,7 +135,7 @@ |
return (rv); |
} |
-SECStatus CERT_FindInvalidDateExten (CERTCrl *crl, int64 *value) |
+SECStatus CERT_FindInvalidDateExten (CERTCrl *crl, PRTime *value) |
{ |
SECItem encodedExtenValue; |
SECItem decodedExtenValue = {siBuffer,0}; |