diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/charon/config/ike_cfg.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/charon/config/ike_cfg.c b/src/charon/config/ike_cfg.c index b486d576f..89dcd8022 100644 --- a/src/charon/config/ike_cfg.c +++ b/src/charon/config/ike_cfg.c @@ -231,7 +231,9 @@ METHOD(ike_cfg_t, equals, bool, this->certreq == other->certreq && this->force_encap == other->force_encap && streq(this->me, other->me) && - streq(this->other, other->other)); + streq(this->other, other->other) && + this->my_port == other->my_port && + this->other_port == other->other_port); } METHOD(ike_cfg_t, get_ref, ike_cfg_t*, |