Index: nss/lib/util/secitem.c |
=================================================================== |
--- nss/lib/util/secitem.c (revision 203524) |
+++ nss/lib/util/secitem.c (working copy) |
@@ -13,7 +13,7 @@ |
#include "secport.h" |
SECItem * |
-SECITEM_AllocItem(PRArenaPool *arena, SECItem *item, unsigned int len) |
+SECITEM_AllocItem(PLArenaPool *arena, SECItem *item, unsigned int len) |
{ |
SECItem *result = NULL; |
void *mark = NULL; |
@@ -77,7 +77,7 @@ |
} |
SECStatus |
-SECITEM_ReallocItem(PRArenaPool *arena, SECItem *item, unsigned int oldlen, |
+SECITEM_ReallocItem(PLArenaPool *arena, SECItem *item, unsigned int oldlen, |
unsigned int newlen) |
{ |
PORT_Assert(item != NULL); |
@@ -165,7 +165,7 @@ |
} |
SECItem * |
-SECITEM_ArenaDupItem(PRArenaPool *arena, const SECItem *from) |
+SECITEM_ArenaDupItem(PLArenaPool *arena, const SECItem *from) |
{ |
SECItem *to; |
@@ -202,7 +202,7 @@ |
} |
SECStatus |
-SECITEM_CopyItem(PRArenaPool *arena, SECItem *to, const SECItem *from) |
+SECITEM_CopyItem(PLArenaPool *arena, SECItem *to, const SECItem *from) |
{ |
to->type = from->type; |
if (from->data && from->len) { |