aboutsummaryrefslogtreecommitdiffstats
path: root/src/charon/sa
diff options
context:
space:
mode:
Diffstat (limited to 'src/charon/sa')
-rw-r--r--src/charon/sa/ike_sa.c4
-rw-r--r--src/charon/sa/tasks/ike_auth.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/charon/sa/ike_sa.c b/src/charon/sa/ike_sa.c
index b1d76ac84..e9c56dcbc 100644
--- a/src/charon/sa/ike_sa.c
+++ b/src/charon/sa/ike_sa.c
@@ -746,8 +746,8 @@ static status_t process_message(private_ike_sa_t *this, message_t *message)
if (this->ike_cfg == NULL)
{
job_t *job;
- this->ike_cfg = charon->cfg_store->get_ike_cfg(charon->cfg_store,
- me, other);
+ this->ike_cfg = charon->backends->get_ike_cfg(charon->backends,
+ me, other);
if (this->ike_cfg == NULL)
{
/* no config found for these hosts, destroy */
diff --git a/src/charon/sa/tasks/ike_auth.c b/src/charon/sa/tasks/ike_auth.c
index 9e2f6b085..c6fc98839 100644
--- a/src/charon/sa/tasks/ike_auth.c
+++ b/src/charon/sa/tasks/ike_auth.c
@@ -511,7 +511,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->backends->get_peer_cfg(charon->backends,
this->ike_sa->get_my_id(this->ike_sa),
this->ike_sa->get_other_id(this->ike_sa));
if (config)