diff options
author | Martin Willi <martin@strongswan.org> | 2009-10-12 14:40:21 +0200 |
---|---|---|
committer | Martin Willi <martin@strongswan.org> | 2009-10-12 14:40:21 +0200 |
commit | 073e7dc062a1e99037809023c77c46bc4dc706b4 (patch) | |
tree | c4fa90b6eecc623104bc6b25710bfdad8ffdd534 /src/charon/daemon.c | |
parent | f7897b64f622cf2b736faec7976628c98a9eeff7 (diff) | |
download | strongswan-073e7dc062a1e99037809023c77c46bc4dc706b4.tar.bz2 strongswan-073e7dc062a1e99037809023c77c46bc4dc706b4.tar.xz |
Merged SIM/USIM manager/card/provider, avoids code duplication
Diffstat (limited to 'src/charon/daemon.c')
-rw-r--r-- | src/charon/daemon.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/charon/daemon.c b/src/charon/daemon.c index 9f7abf799..490357c13 100644 --- a/src/charon/daemon.c +++ b/src/charon/daemon.c @@ -190,7 +190,6 @@ static void destroy(private_daemon_t *this) DESTROY_IF(this->public.controller); DESTROY_IF(this->public.eap); DESTROY_IF(this->public.sim); - DESTROY_IF(this->public.usim); #ifdef ME DESTROY_IF(this->public.connect_manager); DESTROY_IF(this->public.mediation_manager); @@ -487,7 +486,6 @@ static bool initialize(private_daemon_t *this, bool syslog, level_t levels[]) this->public.controller = controller_create(); this->public.eap = eap_manager_create(); this->public.sim = sim_manager_create(); - this->public.usim = usim_manager_create(); this->public.backends = backend_manager_create(); this->public.attributes = attribute_manager_create(); this->public.kernel_interface = kernel_interface_create(); @@ -570,7 +568,6 @@ private_daemon_t *daemon_create(void) this->public.controller = NULL; this->public.eap = NULL; this->public.sim = NULL; - this->public.usim = NULL; this->public.bus = NULL; this->public.file_loggers = linked_list_create(); this->public.sys_loggers = linked_list_create(); |