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/frontends/android/jni | |
parent | 1f29cd2c5db06c32e79c3105e85899398f8d17f5 (diff) | |
download | strongswan-751363275f893f9d212c6bcce3cb984334830cb1.tar.bz2 strongswan-751363275f893f9d212c6bcce3cb984334830cb1.tar.xz |
attributes: Move the configuration attributes framework to libcharon
Diffstat (limited to 'src/frontends/android/jni')
-rw-r--r-- | src/frontends/android/jni/libandroidbridge/charonservice.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/frontends/android/jni/libandroidbridge/charonservice.c b/src/frontends/android/jni/libandroidbridge/charonservice.c index b83d8278a..524630024 100644 --- a/src/frontends/android/jni/libandroidbridge/charonservice.c +++ b/src/frontends/android/jni/libandroidbridge/charonservice.c @@ -425,15 +425,15 @@ static bool charonservice_register(plugin_t *plugin, plugin_feature_t *feature, { this->net_handler = android_net_create(); lib->credmgr->add_set(lib->credmgr, &this->creds->set); - hydra->attributes->add_handler(hydra->attributes, - &this->attr->handler); + charon->attributes->add_handler(charon->attributes, + &this->attr->handler); } else { this->net_handler->destroy(this->net_handler); lib->credmgr->remove_set(lib->credmgr, &this->creds->set); - hydra->attributes->remove_handler(hydra->attributes, - &this->attr->handler); + charon->attributes->remove_handler(charon->attributes, + &this->attr->handler); if (this->service) { this->service->destroy(this->service); |