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

Unified Diff: nss/mozilla/security/nss/lib/pki/pki3hack.c

Issue 3135002: Update to NSS 3.12.7 and NSPR 4.8.6.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party/
Patch Set: Created 10 years, 4 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
Index: nss/mozilla/security/nss/lib/pki/pki3hack.c
===================================================================
--- nss/mozilla/security/nss/lib/pki/pki3hack.c (revision 55475)
+++ nss/mozilla/security/nss/lib/pki/pki3hack.c (working copy)
@@ -35,7 +35,7 @@
* ***** END LICENSE BLOCK ***** */
#ifdef DEBUG
-static const char CVS_ID[] = "@(#) $RCSfile: pki3hack.c,v $ $Revision: 1.98 $ $Date: 2009/10/01 17:14:02 $";
+static const char CVS_ID[] = "@(#) $RCSfile: pki3hack.c,v $ $Revision: 1.100 $ $Date: 2010/05/18 19:38:40 $";
#endif /* DEBUG */
/*
@@ -109,7 +109,7 @@
}
token = nssToken_CreateFromPK11SlotInfo(td, slot);
PK11Slot_SetNSSToken(slot, token);
- /* Don't add non-existent token to TD's token list */
+ /* Don't add nonexistent token to TD's token list */
if (token) {
NSSRWLock_LockWrite(td->tokensLock);
nssList_Add(td->tokenList, token);
@@ -817,7 +817,7 @@
/* Assert that it is safe to cast &cc->nsCertType to "PRInt32 *" */
PORT_Assert(sizeof(cc->nsCertType) == sizeof(PRInt32));
- PR_AtomicSet((PRInt32 *)&cc->nsCertType, nsCertType);
+ PR_ATOMIC_SET((PRInt32 *)&cc->nsCertType, nsCertType);
}
}

Powered by Google App Engine
This is Rietveld 408576698