diff options
author | Andreas Steffen <andreas.steffen@strongswan.org> | 2007-04-10 22:38:06 +0000 |
---|---|---|
committer | Andreas Steffen <andreas.steffen@strongswan.org> | 2007-04-10 22:38:06 +0000 |
commit | a07aad39dc513f9a93c8a21599a661b0591902d3 (patch) | |
tree | eb729dfc62a34130a4058781b997f39ec06567e8 | |
parent | 4876f521d699020bb574b5432aa3de63d1bf370b (diff) | |
download | strongswan-a07aad39dc513f9a93c8a21599a661b0591902d3.tar.bz2 strongswan-a07aad39dc513f9a93c8a21599a661b0591902d3.tar.xz |
edited comment and debug output
-rw-r--r-- | src/charon/sa/tasks/ike_auth.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/charon/sa/tasks/ike_auth.c b/src/charon/sa/tasks/ike_auth.c index fa4b6a45e..67f1e8bcc 100644 --- a/src/charon/sa/tasks/ike_auth.c +++ b/src/charon/sa/tasks/ike_auth.c @@ -488,7 +488,7 @@ static status_t build_i(private_ike_auth_t *this, message_t *message) } /** - * Implementation of task_t.process for initiator + * Implementation of task_t.process for responder */ static status_t process_r(private_ike_auth_t *this, message_t *message) { @@ -504,7 +504,7 @@ static status_t process_r(private_ike_auth_t *this, message_t *message) return NEED_MORE; } - config = charon->cfg_store->get_peer_cfg(charon->cfg_store, + config = charon->cfg_store->get_peer_cfg(charon->cfg_store, this->ike_sa->get_my_id(this->ike_sa), this->ike_sa->get_other_id(this->ike_sa)); if (config) @@ -546,7 +546,7 @@ static status_t build_r(private_ike_auth_t *this, message_t *message) config = this->ike_sa->get_peer_cfg(this->ike_sa); if (config == NULL) { - SIG(IKE_UP_FAILED, "no acceptable peer config found for %D...%D", + SIG(IKE_UP_FAILED, "no matching config found for %D...%D", this->ike_sa->get_my_id(this->ike_sa), this->ike_sa->get_other_id(this->ike_sa)); message->add_notify(message, TRUE, AUTHENTICATION_FAILED, chunk_empty); |