diff options
-rw-r--r-- | src/charon/plugins/load_tester/load_tester_creds.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/charon/plugins/load_tester/load_tester_creds.c b/src/charon/plugins/load_tester/load_tester_creds.c index a2087269d..476a90b9f 100644 --- a/src/charon/plugins/load_tester/load_tester_creds.c +++ b/src/charon/plugins/load_tester/load_tester_creds.c @@ -280,11 +280,11 @@ static enumerator_t* create_shared_enumerator(private_load_tester_creds_t *this, { return NULL; } - if (me && !this->id->matches(this->id, me)) + if (me && !me->matches(me, this->id)) { return NULL; } - if (other && !this->id->matches(this->id, other)) + if (other && !other->matches(other, this->id)) { return NULL; } |