aboutsummaryrefslogtreecommitdiffstats
path: root/src/libcharon/processing
diff options
context:
space:
mode:
authorMartin Willi <martin@revosec.ch>2012-06-14 14:47:40 +0200
committerMartin Willi <martin@revosec.ch>2012-06-25 10:18:34 +0200
commit0fbfcf2a3a9d061ca0a038d2c9a76e6e25f076e8 (patch)
tree59ffb9b95227cedf19e9501a493c1dd4ce163700 /src/libcharon/processing
parentde5e8fb4e09d4245c10fd9c0e98c1fe0115cd08e (diff)
downloadstrongswan-0fbfcf2a3a9d061ca0a038d2c9a76e6e25f076e8.tar.bz2
strongswan-0fbfcf2a3a9d061ca0a038d2c9a76e6e25f076e8.tar.xz
Use XAuth/EAP remote identity for uniqueness check
Diffstat (limited to 'src/libcharon/processing')
-rw-r--r--src/libcharon/processing/jobs/adopt_children_job.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libcharon/processing/jobs/adopt_children_job.c b/src/libcharon/processing/jobs/adopt_children_job.c
index 93da960f8..4ba6e872b 100644
--- a/src/libcharon/processing/jobs/adopt_children_job.c
+++ b/src/libcharon/processing/jobs/adopt_children_job.c
@@ -77,7 +77,7 @@ METHOD(job_t, execute, void,
/* find old SA to adopt children from */
children = linked_list_create();
enumerator = charon->ike_sa_manager->create_id_enumerator(
- charon->ike_sa_manager, my_id, other_id,
+ charon->ike_sa_manager, my_id, xauth,
other->get_family(other));
while (enumerator->enumerate(enumerator, &id))
{
@@ -92,7 +92,7 @@ METHOD(job_t, execute, void,
ike_sa->get_state(ike_sa) == IKE_PASSIVE) &&
me->equals(me, ike_sa->get_my_host(ike_sa)) &&
other->equals(other, ike_sa->get_other_host(ike_sa)) &&
- xauth->equals(xauth, ike_sa->get_other_eap_id(ike_sa)) &&
+ other_id->equals(other_id, ike_sa->get_other_id(ike_sa)) &&
cfg->equals(cfg, ike_sa->get_peer_cfg(ike_sa)))
{
childenum = ike_sa->create_child_sa_enumerator(ike_sa);