diff options
Diffstat (limited to 'src/charon/sa/ike_sa.c')
-rw-r--r-- | src/charon/sa/ike_sa.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/charon/sa/ike_sa.c b/src/charon/sa/ike_sa.c index def5ecb3f..2ac59b2c2 100644 --- a/src/charon/sa/ike_sa.c +++ b/src/charon/sa/ike_sa.c @@ -450,7 +450,8 @@ static void dpd_detected(private_ike_sa_t *this) policy = charon->policies->get_policy(charon->policies, this->my_id, this->other_id, my_ts, other_ts, - this->my_host, this->other_host); + this->my_host, this->other_host, + NULL); if (policy == NULL) { DBG1(DBG_IKE, "no policy for CHILD to handle DPD"); @@ -993,7 +994,8 @@ static status_t acquire(private_ike_sa_t *this, u_int32_t reqid) policy = charon->policies->get_policy(charon->policies, this->my_id, this->other_id, my_ts, other_ts, - this->my_host, this->other_host); + this->my_host, this->other_host, + NULL); if (policy == NULL) { SIG(CHILD_UP_START, "acquiring CHILD_SA with reqid %d", reqid); |