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

Unified Diff: nss/lib/certhigh/certreq.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/certhigh/certhigh.c ('k') | nss/lib/certhigh/certvfy.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: nss/lib/certhigh/certreq.c
===================================================================
--- nss/lib/certhigh/certreq.c (revision 203524)
+++ nss/lib/certhigh/certreq.c (working copy)
@@ -52,7 +52,7 @@
{
CERTCertificate *c;
int rv;
- PRArenaPool *arena;
+ PLArenaPool *arena;
arena = PORT_NewArena(DER_DEFAULT_CHUNKSIZE);
@@ -124,7 +124,7 @@
SECItem **attributes)
{
CERTCertificateRequest *certreq;
- PRArenaPool *arena;
+ PLArenaPool *arena;
CERTAttribute * attribute;
SECOidData * oidData;
SECStatus rv;
@@ -240,7 +240,7 @@
** The list is created as CertExtensions and converted to an
** attribute list by CERT_FinishCRAttributes().
*/
-extern void *cert_StartExtensions(void *owner, PRArenaPool *ownerArena,
+extern void *cert_StartExtensions(void *owner, PLArenaPool *ownerArena,
void (*setExts)(void *object, CERTCertExtension **exts));
void *
CERT_StartCertificateRequestAttributes(CERTCertificateRequest *req)
« no previous file with comments | « nss/lib/certhigh/certhigh.c ('k') | nss/lib/certhigh/certvfy.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698