Fix gcc compiler warning

git-svn-id: svn://10.0.0.236/trunk@171623 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
julien.pierre.bugs%sun.com 2005-04-05 00:55:55 +00:00
parent 35dcf9c9a4
commit cc43cd5f11

View File

@ -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;