summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjulien.pierre.bugs%sun.com <devnull@localhost>2005-04-05 00:55:55 +0000
committerjulien.pierre.bugs%sun.com <devnull@localhost>2005-04-05 00:55:55 +0000
commit0d1898c6f9996262e31f4976efa731a5b608e6b9 (patch)
treedc49af0f3c65a57a265b2aa417d5d5af38d4f127
parent006a09819e0fbf53c766bc07ff4cf870c9a48652 (diff)
downloadnss-hg-0d1898c6f9996262e31f4976efa731a5b608e6b9.tar.gz
Fix gcc compiler warning
-rw-r--r--security/nss/lib/softoken/pkcs11u.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/security/nss/lib/softoken/pkcs11u.c b/security/nss/lib/softoken/pkcs11u.c
index 72a633b81..8555f2bf3 100644
--- a/security/nss/lib/softoken/pkcs11u.c
+++ b/security/nss/lib/softoken/pkcs11u.c
@@ -268,7 +268,7 @@ sftk_getCrl(SFTKTokenObject *object)
return (certDBEntryRevocation *)object->obj.objectInfo;
}
- isKrl = (PRBool) object->obj.handle == SFTK_TOKEN_KRL_HANDLE;
+ isKrl = (PRBool) (object->obj.handle == SFTK_TOKEN_KRL_HANDLE);
crl = nsslowcert_FindCrlByKey(object->obj.slot->certDB,
&object->dbKey, isKrl);
object->obj.objectInfo = (void *)crl;