From eba65182e4d52e2e0d8cd15ba3f14cba5229f225 Mon Sep 17 00:00:00 2001 From: Tobias Brunner Date: Wed, 7 Nov 2012 12:41:17 +0100 Subject: [PATCH] Include 'aggressive' when comparing peer_cfg_t objects --- src/libcharon/config/peer_cfg.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/libcharon/config/peer_cfg.c b/src/libcharon/config/peer_cfg.c index 3d4ff20b8..8de7d1289 100644 --- a/src/libcharon/config/peer_cfg.c +++ b/src/libcharon/config/peer_cfg.c @@ -583,6 +583,7 @@ METHOD(peer_cfg_t, equals, bool, this->jitter_time == other->jitter_time && this->over_time == other->over_time && this->dpd == other->dpd && + this->aggressive == other->aggressive && auth_cfg_equal(this, other) #ifdef ME && this->mediation == other->mediation &&