From af2c43fdc7a977846290e2132fcea1926b0332cf Mon Sep 17 00:00:00 2001 From: Martin Willi Date: Wed, 24 Feb 2010 10:07:47 +0000 Subject: Include ports in ike_cfg equality check --- src/charon/config/ike_cfg.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src') 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*, -- cgit v1.2.3