diff options
author | Andreas Steffen <andreas.steffen@strongswan.org> | 2011-08-08 09:49:35 +0200 |
---|---|---|
committer | Andreas Steffen <andreas.steffen@strongswan.org> | 2011-08-10 09:29:34 +0200 |
commit | 51444636344ba12a1b15b58356721c5be3d804ce (patch) | |
tree | 85cfd2f42780d129a9f24ce3e5a098834bf8521b /src/libcharon/plugins/tnc_ifmap/tnc_ifmap_plugin.c | |
parent | 8c78772a0598619b7bc5197662ee1c8a0703f7d0 (diff) | |
download | strongswan-51444636344ba12a1b15b58356721c5be3d804ce.tar.bz2 strongswan-51444636344ba12a1b15b58356721c5be3d804ce.tar.xz |
publish all IKE_SA metadata after tnc-ifmap plugin reload
Diffstat (limited to 'src/libcharon/plugins/tnc_ifmap/tnc_ifmap_plugin.c')
-rw-r--r-- | src/libcharon/plugins/tnc_ifmap/tnc_ifmap_plugin.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libcharon/plugins/tnc_ifmap/tnc_ifmap_plugin.c b/src/libcharon/plugins/tnc_ifmap/tnc_ifmap_plugin.c index 6c97a5a1c..de4d12e0b 100644 --- a/src/libcharon/plugins/tnc_ifmap/tnc_ifmap_plugin.c +++ b/src/libcharon/plugins/tnc_ifmap/tnc_ifmap_plugin.c @@ -51,7 +51,7 @@ METHOD(plugin_t, reload, bool, this->listener->destroy(this->listener); } - this->listener = tnc_ifmap_listener_create(); + this->listener = tnc_ifmap_listener_create(TRUE); if (!this->listener) { return FALSE; @@ -87,7 +87,7 @@ plugin_t *tnc_ifmap_plugin_create() .destroy = _destroy, }, }, - .listener = tnc_ifmap_listener_create(), + .listener = tnc_ifmap_listener_create(FALSE), ); if (this->listener) |