From cc43cd5f116115c11fb30dde6bb9cd27b6063c5b Mon Sep 17 00:00:00 2001 From: "julien.pierre.bugs%sun.com" Date: Tue, 5 Apr 2005 00:55:55 +0000 Subject: [PATCH] Fix gcc compiler warning git-svn-id: svn://10.0.0.236/trunk@171623 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/security/nss/lib/softoken/pkcs11u.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mozilla/security/nss/lib/softoken/pkcs11u.c b/mozilla/security/nss/lib/softoken/pkcs11u.c index 72a633b8139..8555f2bf3ec 100644 --- a/mozilla/security/nss/lib/softoken/pkcs11u.c +++ b/mozilla/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;