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

Unified Diff: nss/lib/pk11wrap/pk11auth.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/pk11akey.c ('k') | nss/lib/pk11wrap/pk11mech.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: nss/lib/pk11wrap/pk11auth.c
===================================================================
--- nss/lib/pk11wrap/pk11auth.c (revision 203524)
+++ nss/lib/pk11wrap/pk11auth.c (working copy)
@@ -52,7 +52,7 @@
int len = 0;
CK_RV crv;
SECStatus rv;
- int64 currtime = PR_Now();
+ PRTime currtime = PR_Now();
PRBool mustRetry;
int retry = 0;
@@ -132,7 +132,7 @@
int len = 0;
CK_RV crv;
SECStatus rv;
- int64 currtime = PR_Now();
+ PRTime currtime = PR_Now();
if (slot->protectedAuthPath) {
len = 0;
@@ -738,9 +738,9 @@
/* forget the password if we've been inactive too long */
if (askpw == 1) {
- int64 currtime = PR_Now();
- int64 result;
- int64 mult;
+ PRTime currtime = PR_Now();
+ PRTime result;
+ PRTime mult;
LL_I2L(result, timeout);
LL_I2L(mult, 60*1000*1000);
« no previous file with comments | « nss/lib/pk11wrap/pk11akey.c ('k') | nss/lib/pk11wrap/pk11mech.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698