diff options
author | Tobias Brunner <tobias@strongswan.org> | 2016-02-12 15:30:18 +0100 |
---|---|---|
committer | Tobias Brunner <tobias@strongswan.org> | 2016-03-03 17:36:11 +0100 |
commit | 8394ea2a42eb23ba22471d913dcf47e6067109e1 (patch) | |
tree | 365f6d98c717f76701dac4e4ef1064d408c305f5 /src/libhydra/hydra.c | |
parent | dec9e1957feb56c854bc24a657a6a378d74317f6 (diff) | |
download | strongswan-8394ea2a42eb23ba22471d913dcf47e6067109e1.tar.bz2 strongswan-8394ea2a42eb23ba22471d913dcf47e6067109e1.tar.xz |
libhydra: Move kernel interface to libcharon
This moves hydra->kernel_interface to charon->kernel.
Diffstat (limited to 'src/libhydra/hydra.c')
-rw-r--r-- | src/libhydra/hydra.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/libhydra/hydra.c b/src/libhydra/hydra.c index 47ffb59c6..2f6ce452b 100644 --- a/src/libhydra/hydra.c +++ b/src/libhydra/hydra.c @@ -57,7 +57,6 @@ void libhydra_deinit() return; } - this->public.kernel_interface->destroy(this->public.kernel_interface); free(this); hydra = NULL; } @@ -81,8 +80,6 @@ bool libhydra_init() ); hydra = &this->public; - this->public.kernel_interface = kernel_interface_create(); - if (lib->integrity && !lib->integrity->check(lib->integrity, "libhydra", libhydra_init)) { |