cosmetics

This commit is contained in:
Andreas Steffen 2006-09-18 07:43:44 +00:00
parent e2de376c74
commit 2e7b7faf0c
1 changed files with 1 additions and 2 deletions

View File

@ -1045,8 +1045,7 @@ static cert_status_t get_status(const private_x509_t *this)
*/
static bool verify(const private_x509_t *this, const rsa_public_key_t *signer)
{
return (signer->verify_emsa_pkcs1_signature(signer, this->tbsCertificate,
this->signature) == SUCCESS);
return signer->verify_emsa_pkcs1_signature(signer, this->tbsCertificate, this->signature) == SUCCESS;
}
/**