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

Unified Diff: nss/lib/softoken/lowpbe.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/softoken/lowpbe.h ('k') | nss/lib/softoken/padbuf.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: nss/lib/softoken/lowpbe.c
===================================================================
--- nss/lib/softoken/lowpbe.c (revision 203524)
+++ nss/lib/softoken/lowpbe.c (working copy)
@@ -426,7 +426,7 @@
NSSPKCS5PBEParameter *pbe_param, SECItem *pwitem,
PBEBitGenID bitGenPurpose, unsigned int bytesNeeded)
{
- PRArenaPool *arena = NULL;
+ PLArenaPool *arena = NULL;
unsigned int SLen,PLen;
unsigned int hashLength = hashObject->length;
unsigned char *S, *P;
@@ -741,7 +741,7 @@
NSSPKCS5PBEParameter *
nsspkcs5_NewParam(SECOidTag alg, SECItem *salt, int iterator)
{
- PRArenaPool *arena = NULL;
+ PLArenaPool *arena = NULL;
NSSPKCS5PBEParameter *pbe_param = NULL;
SECStatus rv = SECFailure;
@@ -1277,7 +1277,7 @@
* SECOID_DestroyAlgorithmID
*/
SECAlgorithmID *
-nsspkcs5_CreateAlgorithmID(PRArenaPool *arena, SECOidTag algorithm,
+nsspkcs5_CreateAlgorithmID(PLArenaPool *arena, SECOidTag algorithm,
NSSPKCS5PBEParameter *pbe_param)
{
SECAlgorithmID *algid, *ret_algid = NULL;
« no previous file with comments | « nss/lib/softoken/lowpbe.h ('k') | nss/lib/softoken/padbuf.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698