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

Unified Diff: nss/lib/util/quickder.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/nssb64e.c ('k') | nss/lib/util/secalgid.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: nss/lib/util/quickder.c
===================================================================
--- nss/lib/util/quickder.c (revision 203524)
+++ nss/lib/util/quickder.c (working copy)
@@ -333,11 +333,11 @@
static SECStatus DecodeItem(void* dest,
const SEC_ASN1Template* templateEntry,
- SECItem* src, PRArenaPool* arena, PRBool checkTag);
+ SECItem* src, PLArenaPool* arena, PRBool checkTag);
static SECStatus DecodeSequence(void* dest,
const SEC_ASN1Template* templateEntry,
- SECItem* src, PRArenaPool* arena)
+ SECItem* src, PLArenaPool* arena)
{
SECStatus rv = SECSuccess;
SECItem source;
@@ -389,7 +389,7 @@
static SECStatus DecodeInline(void* dest,
const SEC_ASN1Template* templateEntry,
- SECItem* src, PRArenaPool* arena, PRBool checkTag)
+ SECItem* src, PLArenaPool* arena, PRBool checkTag)
{
const SEC_ASN1Template* inlineTemplate =
SEC_ASN1GetSubtemplate (templateEntry, dest, PR_FALSE);
@@ -399,7 +399,7 @@
static SECStatus DecodePointer(void* dest,
const SEC_ASN1Template* templateEntry,
- SECItem* src, PRArenaPool* arena, PRBool checkTag)
+ SECItem* src, PLArenaPool* arena, PRBool checkTag)
{
const SEC_ASN1Template* ptrTemplate =
SEC_ASN1GetSubtemplate (templateEntry, dest, PR_FALSE);
@@ -418,7 +418,7 @@
static SECStatus DecodeImplicit(void* dest,
const SEC_ASN1Template* templateEntry,
- SECItem* src, PRArenaPool* arena)
+ SECItem* src, PLArenaPool* arena)
{
if (templateEntry->kind & SEC_ASN1_POINTER)
{
@@ -434,7 +434,7 @@
static SECStatus DecodeChoice(void* dest,
const SEC_ASN1Template* templateEntry,
- SECItem* src, PRArenaPool* arena)
+ SECItem* src, PLArenaPool* arena)
{
SECStatus rv = SECSuccess;
SECItem choice;
@@ -483,7 +483,7 @@
static SECStatus DecodeGroup(void* dest,
const SEC_ASN1Template* templateEntry,
- SECItem* src, PRArenaPool* arena)
+ SECItem* src, PLArenaPool* arena)
{
SECStatus rv = SECSuccess;
SECItem source;
@@ -571,7 +571,7 @@
static SECStatus DecodeExplicit(void* dest,
const SEC_ASN1Template* templateEntry,
- SECItem* src, PRArenaPool* arena)
+ SECItem* src, PLArenaPool* arena)
{
SECStatus rv = SECSuccess;
SECItem subItem;
@@ -598,7 +598,7 @@
static SECStatus DecodeItem(void* dest,
const SEC_ASN1Template* templateEntry,
- SECItem* src, PRArenaPool* arena, PRBool checkTag)
+ SECItem* src, PLArenaPool* arena, PRBool checkTag)
{
SECStatus rv = SECSuccess;
SECItem temp;
@@ -868,7 +868,7 @@
/* the function below is the public one */
-SECStatus SEC_QuickDERDecodeItem(PRArenaPool* arena, void* dest,
+SECStatus SEC_QuickDERDecodeItem(PLArenaPool* arena, void* dest,
const SEC_ASN1Template* templateEntry,
const SECItem* src)
{
« no previous file with comments | « nss/lib/util/nssb64e.c ('k') | nss/lib/util/secalgid.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698