diff options
author | Tobias Brunner <tobias@strongswan.org> | 2012-11-07 12:41:17 +0100 |
---|---|---|
committer | Tobias Brunner <tobias@strongswan.org> | 2012-11-07 12:44:58 +0100 |
commit | eba65182e4d52e2e0d8cd15ba3f14cba5229f225 (patch) | |
tree | 2849e6e8255a4193f1863f99e5bead36653db15a | |
parent | bf0bcee9ec51959976bfb1dfdbfd2aa63c8f82c9 (diff) | |
download | strongswan-eba65182e4d52e2e0d8cd15ba3f14cba5229f225.tar.bz2 strongswan-eba65182e4d52e2e0d8cd15ba3f14cba5229f225.tar.xz |
Include 'aggressive' when comparing peer_cfg_t objects
-rw-r--r-- | src/libcharon/config/peer_cfg.c | 1 |
1 files changed, 1 insertions, 0 deletions
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 && |