diff options
author | Martin Willi <martin@strongswan.org> | 2006-06-15 13:41:06 +0000 |
---|---|---|
committer | Martin Willi <martin@strongswan.org> | 2006-06-15 13:41:06 +0000 |
commit | c859ec9592d2c9910097cab05c1315dbead57f01 (patch) | |
tree | bd60cdbe156362656b18df7524b36d0f6e1b2a42 | |
parent | c15c3d4be96336699b469b4c4045f1acd97201e8 (diff) | |
download | strongswan-c859ec9592d2c9910097cab05c1315dbead57f01.tar.bz2 strongswan-c859ec9592d2c9910097cab05c1315dbead57f01.tar.xz |
fixed compilation error
-rw-r--r-- | src/charon/daemon.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/charon/daemon.c b/src/charon/daemon.c index 92a2c5d6c..ad9b4f69d 100644 --- a/src/charon/daemon.c +++ b/src/charon/daemon.c @@ -177,11 +177,10 @@ static void initialize(private_daemon_t *this, bool strict) this->public.send_queue = send_queue_create(); this->public.connections = (connection_store_t*)local_connection_store_create(); this->public.policies = (policy_store_t*)local_policy_store_create(); - this->public.credentials = (credential_store_t*)(cred_store = local_credential_store_create(strict)); + this->public.credentials = (credential_store_t*)(cred_store = local_credential_store_create()); /* load keys & certs */ cred_store->load_ca_certificates(cred_store, CA_CERTIFICATE_DIR); - cred_store->load_crls(cred_store, CRL_DIR); cred_store->load_private_keys(cred_store, SECRETS_FILE, PRIVATE_KEY_DIR); |