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

Unified Diff: nss/lib/util/dersubr.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/util/derenc.c ('k') | nss/lib/util/dertime.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: nss/lib/util/dersubr.c
===================================================================
--- nss/lib/util/dersubr.c (revision 203524)
+++ nss/lib/util/dersubr.c (working copy)
@@ -76,7 +76,7 @@
* of a PRInt32.
*/
SECStatus
-DER_SetInteger(PRArenaPool *arena, SECItem *it, PRInt32 i)
+DER_SetInteger(PLArenaPool *arena, SECItem *it, PRInt32 i)
{
unsigned char bb[4];
unsigned len;
@@ -127,7 +127,7 @@
* of a PRUint32.
*/
SECStatus
-DER_SetUInteger(PRArenaPool *arena, SECItem *it, PRUint32 ui)
+DER_SetUInteger(PLArenaPool *arena, SECItem *it, PRUint32 ui)
{
unsigned char bb[5];
int len;
« no previous file with comments | « nss/lib/util/derenc.c ('k') | nss/lib/util/dertime.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698