activate logging before loading plugins

This commit is contained in:
Andreas Steffen 2013-03-21 18:04:24 +01:00
parent dd3c243844
commit 6e58f0a34f
1 changed files with 7 additions and 7 deletions

View File

@ -107,13 +107,6 @@ bool libimcv_init(void)
return FALSE;
}
if (!lib->plugins->load(lib->plugins, NULL,
"sha1 sha2 random nonce gmp pubkey x509"))
{
library_deinit();
return FALSE;
}
/* set the debug level and stderr output */
imcv_debug_level = lib->settings->get_int(lib->settings,
"libimcv.debug_level", IMCV_DEBUG_LEVEL);
@ -123,6 +116,13 @@ bool libimcv_init(void)
/* activate the imcv debugging hook */
dbg = imcv_dbg;
openlog("imcv", 0, LOG_DAEMON);
if (!lib->plugins->load(lib->plugins, NULL,
"sha1 sha2 random nonce gmp pubkey x509"))
{
library_deinit();
return FALSE;
}
}
ref_get(&libstrongswan_ref);