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

Unified Diff: nss/lib/pk11wrap/pk11obj.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/pk11wrap/pk11nobj.c ('k') | nss/lib/pk11wrap/pk11pars.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: nss/lib/pk11wrap/pk11obj.c
===================================================================
--- nss/lib/pk11wrap/pk11obj.c (revision 203524)
+++ nss/lib/pk11wrap/pk11obj.c (working copy)
@@ -84,7 +84,7 @@
*/
SECStatus
PK11_ReadAttribute(PK11SlotInfo *slot, CK_OBJECT_HANDLE id,
- CK_ATTRIBUTE_TYPE type, PRArenaPool *arena, SECItem *result) {
+ CK_ATTRIBUTE_TYPE type, PLArenaPool *arena, SECItem *result) {
CK_ATTRIBUTE attr = { 0, NULL, 0 };
CK_RV crv;
@@ -173,7 +173,7 @@
* provided, allocate space out of the arena.
*/
CK_RV
-PK11_GetAttributes(PRArenaPool *arena,PK11SlotInfo *slot,
+PK11_GetAttributes(PLArenaPool *arena,PK11SlotInfo *slot,
CK_OBJECT_HANDLE obj,CK_ATTRIBUTE *attr, int count)
{
int i;
@@ -1736,7 +1736,7 @@
/* if you change the array, change the variable below as well */
CK_OBJECT_HANDLE peerID;
CK_OBJECT_HANDLE parent;
- PRArenaPool *arena;
+ PLArenaPool *arena;
CK_RV crv;
/* now we need to create space for the public key */
« no previous file with comments | « nss/lib/pk11wrap/pk11nobj.c ('k') | nss/lib/pk11wrap/pk11pars.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698