diff --git a/mozilla/security/nss/lib/softoken/pkcs11i.h b/mozilla/security/nss/lib/softoken/pkcs11i.h index 1b1f4509405..455f3f5e5e7 100644 --- a/mozilla/security/nss/lib/softoken/pkcs11i.h +++ b/mozilla/security/nss/lib/softoken/pkcs11i.h @@ -58,7 +58,7 @@ #define PKCS11_USE_THREADS /* set to true of you are need threads */ /* - * Attribute Allocation strategy is static allocation: + * The attribute allocation strategy is static allocation: * Attributes are pre-allocated as part of the session object and used from * the object array. */ diff --git a/mozilla/security/nss/lib/softoken/pkcs11u.c b/mozilla/security/nss/lib/softoken/pkcs11u.c index 3d350c6434d..17fc3fdd8c3 100644 --- a/mozilla/security/nss/lib/softoken/pkcs11u.c +++ b/mozilla/security/nss/lib/softoken/pkcs11u.c @@ -69,10 +69,10 @@ pk11_NewAttribute(PK11Object *object, PORT_Assert(0); } /* - * We attempt to keep down contention on Malloc and Arena locks - * by limiting the number of these calls on high traversed paths. this - * is done for attributes by 'allocating' them from a pool already allocated - * by the parent object. + * We attempt to keep down contention on Malloc and Arena locks by + * limiting the number of these calls on high traversed paths. This + * is done for attributes by 'allocating' them from a pool already + * allocated by the parent object. */ PK11_USE_THREADS(PZ_Lock(so->attributeLock);) index = so->nextAttr++;