Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(103)

Unified Diff: nss/lib/certdb/alg1485.c

Issue 16132005: Allow NSS to be built with NO_NSPR_10_SUPPORT. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/nss/
Patch Set: Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « nss/lib/base/arena.c ('k') | nss/lib/certdb/certdb.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: nss/lib/certdb/alg1485.c
===================================================================
--- nss/lib/certdb/alg1485.c (revision 203524)
+++ nss/lib/certdb/alg1485.c (working copy)
@@ -363,7 +363,7 @@
* points to first character after separator.
*/
static CERTAVA *
-ParseRFC1485AVA(PRArenaPool *arena, const char **pbp, const char *endptr)
+ParseRFC1485AVA(PLArenaPool *arena, const char **pbp, const char *endptr)
{
CERTAVA *a;
const NameToKind *n2k;
@@ -1139,7 +1139,7 @@
CERT_DerNameToAscii(SECItem *dername)
{
int rv;
- PRArenaPool *arena = NULL;
+ PLArenaPool *arena = NULL;
CERTName name;
char *retstr = NULL;
@@ -1166,7 +1166,7 @@
}
static char *
-avaToString(PRArenaPool *arena, CERTAVA *ava)
+avaToString(PLArenaPool *arena, CERTAVA *ava)
{
char * buf = NULL;
SECItem* avaValue;
@@ -1200,7 +1200,7 @@
* This code returns the FIRST one found, the most general one found.
*/
static char *
-CERT_GetNameElement(PRArenaPool *arena, const CERTName *name, int wantedTag)
+CERT_GetNameElement(PLArenaPool *arena, const CERTName *name, int wantedTag)
{
CERTRDN** rdns = name->rdns;
CERTRDN* rdn;
@@ -1224,7 +1224,7 @@
* This is particularly appropriate for Common Name. See RFC 2818.
*/
static char *
-CERT_GetLastNameElement(PRArenaPool *arena, const CERTName *name, int wantedTag)
+CERT_GetLastNameElement(PLArenaPool *arena, const CERTName *name, int wantedTag)
{
CERTRDN** rdns = name->rdns;
CERTRDN* rdn;
@@ -1251,7 +1251,7 @@
SECStatus rv;
CERTGeneralName *nameList = NULL;
CERTGeneralName *current;
- PRArenaPool *arena = NULL;
+ PLArenaPool *arena = NULL;
int i;
subAltName.data = NULL;
@@ -1383,7 +1383,7 @@
char * rawEmailAddr = NULL;
char * addrBuf = NULL;
char * pBuf = NULL;
- PRArenaPool * tmpArena = PORT_NewArena(DER_DEFAULT_CHUNKSIZE);
+ PLArenaPool * tmpArena = PORT_NewArena(DER_DEFAULT_CHUNKSIZE);
PRUint32 maxLen = 0;
PRInt32 finalLen = 0;
SECStatus rv;
« no previous file with comments | « nss/lib/base/arena.c ('k') | nss/lib/certdb/certdb.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698