aboutsummaryrefslogtreecommitdiffstats
path: root/src/libcharon/plugins/tnc_ifmap/tnc_ifmap_plugin.c
diff options
context:
space:
mode:
authorAndreas Steffen <andreas.steffen@strongswan.org>2011-08-08 09:49:35 +0200
committerAndreas Steffen <andreas.steffen@strongswan.org>2011-08-10 09:29:34 +0200
commit51444636344ba12a1b15b58356721c5be3d804ce (patch)
tree85cfd2f42780d129a9f24ce3e5a098834bf8521b /src/libcharon/plugins/tnc_ifmap/tnc_ifmap_plugin.c
parent8c78772a0598619b7bc5197662ee1c8a0703f7d0 (diff)
downloadstrongswan-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.c4
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)