diff options
author | Tobias Brunner <tobias@strongswan.org> | 2008-05-22 11:33:35 +0000 |
---|---|---|
committer | Tobias Brunner <tobias@strongswan.org> | 2008-05-22 11:33:35 +0000 |
commit | 31430acc1bc435b9a7c405978c31c62cc8f747d5 (patch) | |
tree | 1447f28afa348e0cf130ad3161aeab701084ee46 /src/charon | |
parent | 58ac5e2ff4df40f56e5d44b86c9117c4cdce1ab0 (diff) | |
download | strongswan-31430acc1bc435b9a7c405978c31c62cc8f747d5.tar.bz2 strongswan-31430acc1bc435b9a7c405978c31c62cc8f747d5.tar.xz |
correctly initialize the mediation and connection manager
Diffstat (limited to 'src/charon')
-rw-r--r-- | src/charon/daemon.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/charon/daemon.c b/src/charon/daemon.c index 1359a4a93..ad46c2ec1 100644 --- a/src/charon/daemon.c +++ b/src/charon/daemon.c @@ -489,6 +489,10 @@ private_daemon_t *daemon_create(void) this->public.outlog = NULL; this->public.syslog = NULL; this->public.authlog = NULL; +#ifdef ME + this->public.connect_manager = NULL; + this->public.mediation_manager = NULL; +#endif /* ME */ this->public.uid = 0; this->public.gid = 0; |