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

Unified Diff: nss/lib/freebl/dh.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/freebl/blapi.h ('k') | nss/lib/freebl/dsa.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: nss/lib/freebl/dh.c
===================================================================
--- nss/lib/freebl/dh.c (revision 203524)
+++ nss/lib/freebl/dh.c (working copy)
@@ -44,7 +44,7 @@
SECStatus
DH_GenParam(int primeLen, DHParams **params)
{
- PRArenaPool *arena;
+ PLArenaPool *arena;
DHParams *dhparams;
unsigned char *pb = NULL;
unsigned char *ab = NULL;
@@ -135,7 +135,7 @@
SECStatus
DH_NewKey(DHParams *params, DHPrivateKey **privKey)
{
- PRArenaPool *arena;
+ PLArenaPool *arena;
DHPrivateKey *key;
mp_int g, xa, p, Ya;
mp_err err = MP_OKAY;
« no previous file with comments | « nss/lib/freebl/blapi.h ('k') | nss/lib/freebl/dsa.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698