diff options
author | Jan Hutter <jhutter@hsr.ch> | 2005-11-30 08:57:02 +0000 |
---|---|---|
committer | Jan Hutter <jhutter@hsr.ch> | 2005-11-30 08:57:02 +0000 |
commit | f8c6d7e46fdc95d1552900db256694c9557657d0 (patch) | |
tree | 64e16de2e0ca65bc8cad5de78d2db5d276213fcb /Source/charon/encoding/message.c | |
parent | af30c6b9105caac78afdd989e2158bfb03e970fe (diff) | |
download | strongswan-f8c6d7e46fdc95d1552900db256694c9557657d0.tar.bz2 strongswan-f8c6d7e46fdc95d1552900db256694c9557657d0.tar.xz |
fixed bug
Diffstat (limited to 'Source/charon/encoding/message.c')
-rw-r--r-- | Source/charon/encoding/message.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/charon/encoding/message.c b/Source/charon/encoding/message.c index f9864d99e..f53f3916a 100644 --- a/Source/charon/encoding/message.c +++ b/Source/charon/encoding/message.c @@ -843,13 +843,13 @@ static status_t decrypt_payloads (private_message_t *this,crypter_t *crypter, si /* encryption_payload is replaced with first encrypted payload*/ encrypted_payload_iterator->current(encrypted_payload_iterator,(void **)¤t_encrypted_payload); - this->logger->log(this->logger, CONTROL | MORE, "Replace encrypted payload with payload of type %s.",mapping_find(payload_type_m,current_encrypted_payload->get_type(current_encrypted_payload)); + this->logger->log(this->logger, CONTROL | MORE, "Replace encrypted payload with payload of type %s.",mapping_find(payload_type_m,current_encrypted_payload->get_type(current_encrypted_payload))); iterator->replace(iterator,NULL,(void *) current_encrypted_payload); /* all encrypted payloads are added to the payload list */ while (encrypted_payload_iterator->has_next(encrypted_payload_iterator)) { - this->logger->log(this->logger, CONTROL | MORE, "Insert unencrypted payload of type %s at end of list.",mapping_find(payload_type_m,current_encrypted_payload->get_type(current_encrypted_payload)); + this->logger->log(this->logger, CONTROL | MORE, "Insert unencrypted payload of type %s at end of list.",mapping_find(payload_type_m,current_encrypted_payload->get_type(current_encrypted_payload))); encrypted_payload_iterator->current(encrypted_payload_iterator,(void **)¤t_encrypted_payload); this->payloads->insert_last(this->payloads,current_encrypted_payload); } |