diff options
author | Tobias Brunner <tobias@strongswan.org> | 2010-03-24 17:46:29 +0100 |
---|---|---|
committer | Tobias Brunner <tobias@strongswan.org> | 2010-03-24 18:54:26 +0100 |
commit | 58f86d0f0fea14383c1836aa37a21edd38ad2e47 (patch) | |
tree | ede2acd2e57eee75cab28253f76f670c4abf2ad6 /src/libcharon/plugins/android/android_plugin.c | |
parent | 567d3f14639f769b1b2a6ba4dd327ef0b4960c06 (diff) | |
download | strongswan-58f86d0f0fea14383c1836aa37a21edd38ad2e47.tar.bz2 strongswan-58f86d0f0fea14383c1836aa37a21edd38ad2e47.tar.xz |
Changed all usages of lib->attributes to hydra->attributes.
Diffstat (limited to 'src/libcharon/plugins/android/android_plugin.c')
-rw-r--r-- | src/libcharon/plugins/android/android_plugin.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libcharon/plugins/android/android_plugin.c b/src/libcharon/plugins/android/android_plugin.c index f21066a27..9a558f53b 100644 --- a/src/libcharon/plugins/android/android_plugin.c +++ b/src/libcharon/plugins/android/android_plugin.c @@ -16,7 +16,7 @@ #include "android_plugin.h" #include "android_handler.h" -#include <library.h> +#include <hydra.h> #include <daemon.h> typedef struct private_android_plugin_t private_android_plugin_t; @@ -40,7 +40,7 @@ struct private_android_plugin_t { METHOD(plugin_t, destroy, void, private_android_plugin_t *this) { - lib->attributes->remove_handler(lib->attributes, &this->handler->handler); + hydra->attributes->remove_handler(hydra->attributes, &this->handler->handler); this->handler->destroy(this->handler); free(this); } @@ -59,7 +59,7 @@ plugin_t *android_plugin_create() .handler = android_handler_create(), ); - lib->attributes->add_handler(lib->attributes, &this->handler->handler); + hydra->attributes->add_handler(hydra->attributes, &this->handler->handler); return &this->public.plugin; } |