diff options
author | Martin Willi <martin@strongswan.org> | 2005-12-07 10:14:45 +0000 |
---|---|---|
committer | Martin Willi <martin@strongswan.org> | 2005-12-07 10:14:45 +0000 |
commit | 1d24f8fd03465185574f857aea338cb44fe52007 (patch) | |
tree | 3ff8122e6d345b46858c6bcdcc089c9cc85c38bd | |
parent | 283dbcc590bad473bb5d982b94fc59775835f11d (diff) | |
download | strongswan-1d24f8fd03465185574f857aea338cb44fe52007.tar.bz2 strongswan-1d24f8fd03465185574f857aea338cb44fe52007.tar.xz |
-rw-r--r-- | Source/charon/sa/states/responder_init.c | 3 |
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; } |