diff options
author | Tobias Brunner <tobias@strongswan.org> | 2014-01-28 16:38:06 +0100 |
---|---|---|
committer | Tobias Brunner <tobias@strongswan.org> | 2014-02-12 14:34:32 +0100 |
commit | 8dc6e716325135bd6263158d507c1403bbb48261 (patch) | |
tree | 8785a8e55fd89cce5234563c899359846561d69f /src/libstrongswan/credentials | |
parent | 7a684aece4998bf9469e2974b06cfe49a7845a7a (diff) | |
download | strongswan-8dc6e716325135bd6263158d507c1403bbb48261.tar.bz2 strongswan-8dc6e716325135bd6263158d507c1403bbb48261.tar.xz |
lib: All settings use configured namespace
Diffstat (limited to 'src/libstrongswan/credentials')
-rw-r--r-- | src/libstrongswan/credentials/credential_manager.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstrongswan/credentials/credential_manager.c b/src/libstrongswan/credentials/credential_manager.c index de19c8d96..3ec0714b6 100644 --- a/src/libstrongswan/credentials/credential_manager.c +++ b/src/libstrongswan/credentials/credential_manager.c @@ -1349,7 +1349,7 @@ credential_manager_t *credential_manager_create() this->local_sets = thread_value_create((thread_cleanup_t)this->sets->destroy); this->exclusive_local_sets = thread_value_create((thread_cleanup_t)this->sets->destroy); - if (lib->settings->get_bool(lib->settings, "libstrongswan.cert_cache", TRUE)) + if (lib->settings->get_bool(lib->settings, "%s.cert_cache", TRUE, lib->ns)) { this->cache = cert_cache_create(); this->sets->insert_first(this->sets, this->cache); |