From 6e6975395e0a7e2a85f13f2c7e78353a4a787c71 Mon Sep 17 00:00:00 2001 From: Tobias Brunner Date: Thu, 24 Sep 2009 11:28:43 +0200 Subject: [PATCH] Using the correct type for ME_ENDPOINT payloads in connectivity checks. --- src/charon/sa/connect_manager.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/charon/sa/connect_manager.c b/src/charon/sa/connect_manager.c index dac12d870..fe95c0370 100644 --- a/src/charon/sa/connect_manager.c +++ b/src/charon/sa/connect_manager.c @@ -1145,7 +1145,8 @@ static job_requeue_t sender(callback_data_t *data) check->src = pair->local->clone(pair->local); check->dst = pair->remote->clone(pair->remote); check->connect_id = chunk_clone(checklist->connect_id); - check->endpoint = endpoint_notify_create(); + check->endpoint = endpoint_notify_create_from_host(PEER_REFLEXIVE, NULL, + NULL); pair->state = CHECK_IN_PROGRESS;