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

Unified Diff: nss/lib/softoken/ecdecode.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/smime/cmslocal.h ('k') | nss/lib/softoken/lgglue.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: nss/lib/softoken/ecdecode.c
===================================================================
--- nss/lib/softoken/ecdecode.c (revision 203524)
+++ nss/lib/softoken/ecdecode.c (working copy)
@@ -21,7 +21,7 @@
* in the hexadecimal string must be optional.
*/
static SECItem *
-hexString2SECItem(PRArenaPool *arena, SECItem *item, const char *str)
+hexString2SECItem(PLArenaPool *arena, SECItem *item, const char *str)
{
int i = 0;
int byteval = 0;
@@ -63,7 +63,7 @@
/* Copy all of the fields from srcParams into dstParams
*/
SECStatus
-EC_CopyParams(PRArenaPool *arena, ECParams *dstParams,
+EC_CopyParams(PLArenaPool *arena, ECParams *dstParams,
const ECParams *srcParams)
{
SECStatus rv = SECFailure;
@@ -147,7 +147,7 @@
}
SECStatus
-EC_FillParams(PRArenaPool *arena, const SECItem *encodedParams,
+EC_FillParams(PLArenaPool *arena, const SECItem *encodedParams,
ECParams *params)
{
SECStatus rv = SECFailure;
@@ -571,7 +571,7 @@
SECStatus
EC_DecodeParams(const SECItem *encodedParams, ECParams **ecparams)
{
- PRArenaPool *arena;
+ PLArenaPool *arena;
ECParams *params;
SECStatus rv = SECFailure;
« no previous file with comments | « nss/lib/smime/cmslocal.h ('k') | nss/lib/softoken/lgglue.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698