diff options
author | Martin Willi <martin@strongswan.org> | 2005-12-02 12:38:55 +0000 |
---|---|---|
committer | Martin Willi <martin@strongswan.org> | 2005-12-02 12:38:55 +0000 |
commit | ccf783d29dba58e8e6aef211b8d050670b1d55ac (patch) | |
tree | a252d58ead4e682c0bb915dc09bc12c9f21565d6 /Source/charon/encoding/message.c | |
parent | ae3012a0ea0e06e29212f1967b5b71e90460fb43 (diff) | |
download | strongswan-ccf783d29dba58e8e6aef211b8d050670b1d55ac.tar.bz2 strongswan-ccf783d29dba58e8e6aef211b8d050670b1d55ac.tar.xz |
- state ike_sa_init_responded implemented (has some memleaks)
Diffstat (limited to 'Source/charon/encoding/message.c')
-rw-r--r-- | Source/charon/encoding/message.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/charon/encoding/message.c b/Source/charon/encoding/message.c index bf33c5067..bcc34ca96 100644 --- a/Source/charon/encoding/message.c +++ b/Source/charon/encoding/message.c @@ -895,7 +895,8 @@ static status_t decrypt_and_verify_payloads (private_message_t *this,crypter_t * status = encryption_payload->decrypt(encryption_payload); if (status != SUCCESS) { - this->logger->log(this->logger, ERROR | MORE, "Encrypted payload could not be decrypted and parsed"); + this->logger->log(this->logger, ERROR | MORE, "Encrypted payload could not be decrypted and parsed: %s", + mapping_find(status_m, status)); iterator->destroy(iterator); return status; } |