diff options
author | Martin Willi <martin@revosec.ch> | 2014-11-04 14:45:34 +0100 |
---|---|---|
committer | Martin Willi <martin@revosec.ch> | 2015-02-20 13:34:55 +0100 |
commit | 751363275f893f9d212c6bcce3cb984334830cb1 (patch) | |
tree | 386c7898cba34d448ce2f3bdc33f8c300e3e6631 /src/libhydra/hydra.c | |
parent | 1f29cd2c5db06c32e79c3105e85899398f8d17f5 (diff) | |
download | strongswan-751363275f893f9d212c6bcce3cb984334830cb1.tar.bz2 strongswan-751363275f893f9d212c6bcce3cb984334830cb1.tar.xz |
attributes: Move the configuration attributes framework to libcharon
Diffstat (limited to 'src/libhydra/hydra.c')
-rw-r--r-- | src/libhydra/hydra.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/libhydra/hydra.c b/src/libhydra/hydra.c index 1b5065081..47ffb59c6 100644 --- a/src/libhydra/hydra.c +++ b/src/libhydra/hydra.c @@ -57,7 +57,6 @@ void libhydra_deinit() return; } - this->public.attributes->destroy(this->public.attributes); this->public.kernel_interface->destroy(this->public.kernel_interface); free(this); hydra = NULL; @@ -78,9 +77,6 @@ bool libhydra_init() } INIT(this, - .public = { - .attributes = attribute_manager_create(), - }, .ref = 1, ); hydra = &this->public; |