aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Willi <martin@strongswan.org>2005-12-07 10:14:45 +0000
committerMartin Willi <martin@strongswan.org>2005-12-07 10:14:45 +0000
commit1d24f8fd03465185574f857aea338cb44fe52007 (patch)
tree3ff8122e6d345b46858c6bcdcc089c9cc85c38bd
parent283dbcc590bad473bb5d982b94fc59775835f11d (diff)
downloadstrongswan-1d24f8fd03465185574f857aea338cb44fe52007.tar.bz2
strongswan-1d24f8fd03465185574f857aea338cb44fe52007.tar.xz
-rw-r--r--Source/charon/sa/states/responder_init.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/Source/charon/sa/states/responder_init.c b/Source/charon/sa/states/responder_init.c
index b0dcfa322..940a87aa7 100644
--- a/Source/charon/sa/states/responder_init.c
+++ b/Source/charon/sa/states/responder_init.c
@@ -268,7 +268,6 @@ static status_t process_message(private_responder_init_t *this, message_t *messa
status = this->build_sa_payload(this, sa_request, response);
if (status != SUCCESS)
{
- this->logger->log(this->logger, ERROR, "Building SA payload failed");
response->destroy(response);
return status;
}
@@ -276,7 +275,6 @@ static status_t process_message(private_responder_init_t *this, message_t *messa
status = this->build_ke_payload(this, ke_request, response);
if (status != SUCCESS)
{
- this->logger->log(this->logger, ERROR, "Building KE payload failed");
response->destroy(response);
return status;
}
@@ -284,7 +282,6 @@ static status_t process_message(private_responder_init_t *this, message_t *messa
status = this->build_nonce_payload(this, nonce_request, response);
if (status != SUCCESS)
{
- this->logger->log(this->logger, ERROR, "Building NONCE payload failed");
response->destroy(response);
return status;
}