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

Unified Diff: nss/lib/certhigh/certhigh.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/certdb/xconst.c ('k') | nss/lib/certhigh/certreq.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: nss/lib/certhigh/certhigh.c
===================================================================
--- nss/lib/certhigh/certhigh.c (revision 203524)
+++ nss/lib/certhigh/certhigh.c (working copy)
@@ -80,7 +80,7 @@
CERTCertificate *cert = NULL;
CERTCertList *certList = NULL;
SECStatus rv;
- int64 time;
+ PRTime time;
CERTCertListNode *node = NULL;
CERTCertListNode *freenode = NULL;
int n;
@@ -228,7 +228,7 @@
CERTCertificate *cert = NULL;
CERTCertList *certList = NULL;
SECStatus rv;
- int64 time;
+ PRTime time;
time = PR_Now();
@@ -458,7 +458,7 @@
CERTCertNicknames *
CERT_GetCertNicknames(CERTCertDBHandle *handle, int what, void *wincx)
{
- PRArenaPool *arena;
+ PLArenaPool *arena;
CERTCertNicknames *names;
int i;
stringNode *node;
@@ -588,7 +588,7 @@
CERTDistNames *
CERT_DupDistNames(CERTDistNames *orig)
{
- PRArenaPool *arena;
+ PLArenaPool *arena;
CERTDistNames *names;
int i;
SECStatus rv;
@@ -636,7 +636,7 @@
CERTDistNames *
CERT_GetSSLCACerts(CERTCertDBHandle *handle)
{
- PRArenaPool *arena;
+ PLArenaPool *arena;
CERTDistNames *names;
int i;
SECStatus rv;
@@ -698,7 +698,7 @@
CERT_DistNamesFromCertList(CERTCertList *certList)
{
CERTDistNames * dnames = NULL;
- PRArenaPool * arena;
+ PLArenaPool * arena;
CERTCertListNode *node = NULL;
SECItem * names = NULL;
int listLen = 0, i = 0;
@@ -746,7 +746,7 @@
int nnames)
{
CERTDistNames *dnames = NULL;
- PRArenaPool *arena;
+ PLArenaPool *arena;
int i, rv;
SECItem *names = NULL;
CERTCertificate *cert = NULL;
@@ -788,7 +788,7 @@
CERTName *name;
SECItem *nameItem;
CERTCertificate *cert = NULL;
- PRArenaPool *arena = NULL;
+ PLArenaPool *arena = NULL;
arena = PORT_NewArena(DER_DEFAULT_CHUNKSIZE);
@@ -1024,7 +1024,7 @@
CERTCertificateList *chain = NULL;
NSSCertificate **stanChain;
NSSCertificate *stanCert;
- PRArenaPool *arena;
+ PLArenaPool *arena;
NSSUsage nssUsage;
int i, len;
NSSTrustDomain *td = STAN_GetDefaultTrustDomain();
@@ -1116,7 +1116,7 @@
{
CERTCertificateList *chain = NULL;
int rv;
- PRArenaPool *arena;
+ PLArenaPool *arena;
/* arena for SecCertificateList */
arena = PORT_NewArena(DER_DEFAULT_CHUNKSIZE);
@@ -1147,7 +1147,7 @@
CERT_DupCertList(const CERTCertificateList * oldList)
{
CERTCertificateList *newList = NULL;
- PRArenaPool *arena = NULL;
+ PLArenaPool *arena = NULL;
SECItem *newItem;
SECItem *oldItem;
int len = oldList->len;
« no previous file with comments | « nss/lib/certdb/xconst.c ('k') | nss/lib/certhigh/certreq.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698