diff options
-rw-r--r-- | src/libcharon/sa/task_manager_v1.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/libcharon/sa/task_manager_v1.c b/src/libcharon/sa/task_manager_v1.c index fe2f7c7ec..442791881 100644 --- a/src/libcharon/sa/task_manager_v1.c +++ b/src/libcharon/sa/task_manager_v1.c @@ -804,7 +804,10 @@ METHOD(task_manager_t, process_message, status_t, if (ike_cfg == NULL) { /* no config found for these hosts, destroy */ - DBG1(DBG_IKE, "no IKE config found for %H...%H", me, other); + DBG1(DBG_IKE, "no IKE config found for %H...%H, sending %N", + me, other, notify_type_names, NO_PROPOSAL_CHOSEN); + send_notify_response(this, msg, + NO_PROPOSAL_CHOSEN, chunk_empty); return DESTROY_ME; } this->ike_sa->set_ike_cfg(this->ike_sa, ike_cfg); |