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

Unified Diff: nss/lib/pk11wrap/pk11pqg.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/pk11wrap/pk11pk12.c ('k') | nss/lib/pk11wrap/pk11slot.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: nss/lib/pk11wrap/pk11pqg.c
===================================================================
--- nss/lib/pk11wrap/pk11pqg.c (revision 203524)
+++ nss/lib/pk11wrap/pk11pqg.c (working copy)
@@ -64,8 +64,8 @@
CK_ULONG subPrimeBits = N;
int pTemplateCount = sizeof(pTemplate)/sizeof(pTemplate[0]);
int vTemplateCount = sizeof(vTemplate)/sizeof(vTemplate[0]);
- PRArenaPool *parena = NULL;
- PRArenaPool *varena = NULL;
+ PLArenaPool *parena = NULL;
+ PLArenaPool *varena = NULL;
PQGParams *params = NULL;
PQGVerify *verify = NULL;
CK_ULONG seedBits = seedBytes*8;
@@ -379,7 +379,7 @@
extern PQGParams *
PK11_PQG_NewParams(const SECItem * prime, const SECItem * subPrime,
const SECItem * base) {
- PRArenaPool *arena;
+ PLArenaPool *arena;
PQGParams *dest;
SECStatus status;
@@ -452,7 +452,7 @@
extern PQGVerify *
PK11_PQG_NewVerify(unsigned int counter, const SECItem * seed,
const SECItem * h) {
- PRArenaPool *arena;
+ PLArenaPool *arena;
PQGVerify * dest;
SECStatus status;
« no previous file with comments | « nss/lib/pk11wrap/pk11pk12.c ('k') | nss/lib/pk11wrap/pk11slot.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698