- fixed bug when finding out if payload has to get encrypted

This commit is contained in:
Jan Hutter
2005-11-30 09:26:06 +00:00
parent ee29afd42b
commit b09e85f929
+2 -2
View File
@@ -894,11 +894,12 @@ static status_t encrypt_payloads (private_message_t *this,crypter_t *crypter, si
status = this->get_message_rule(this, &message_rule);
if (status != SUCCESS)
{
this->logger->log(this->logger, ERROR | MORE, "No message rule for this message type");
return status;
}
if (!message_rule->encrypted_content)
{
this->logger->log(this->logger, CONTROL | MORE, "Message doesn't have to be encrypted");
/* message contains no content to encrypt */
return SUCCESS;
}
@@ -927,7 +928,6 @@ static status_t encrypt_payloads (private_message_t *this,crypter_t *crypter, si
if ((status == SUCCESS) && (supported_payload_entry->encrypted))
{
to_encrypt = TRUE;
break;
}
if (to_encrypt)