summaryrefslogtreecommitdiffstats
path: root/lasso/lasso.c
diff options
context:
space:
mode:
authorBenjamin Dauvergne <bdauvergne@entrouvert.com>2011-12-02 18:31:06 +0100
committerBenjamin Dauvergne <bdauvergne@entrouvert.com>2011-12-05 12:03:13 +0100
commit2a63167627137136fdd7bc64e53a500820a2096f (patch)
treec8892cf3d7ccfe88f6f6d9f853e2d425337f92e8 /lasso/lasso.c
parent0c45b252dc9f3e6c7aff8dd24e39b3f5596d35b0 (diff)
downloadlasso-2a63167627137136fdd7bc64e53a500820a2096f.tar.gz
lasso-2a63167627137136fdd7bc64e53a500820a2096f.tar.xz
lasso-2a63167627137136fdd7bc64e53a500820a2096f.zip
[core] set the xmlSec log handler globally
The log handler is not set in lasso_init().
Diffstat (limited to 'lasso/lasso.c')
-rw-r--r--lasso/lasso.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/lasso/lasso.c b/lasso/lasso.c
index 28e60fb6..b00893da 100644
--- a/lasso/lasso.c
+++ b/lasso/lasso.c
@@ -127,6 +127,16 @@ DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
#include "types.c"
+static void
+lasso_xml_generic_error_func(G_GNUC_UNUSED void *ctx, const char *msg, ...)
+{
+ va_list args;
+
+ va_start(args, msg);
+ g_logv(LASSO_LOG_DOMAIN, G_LOG_LEVEL_DEBUG, msg, args);
+ va_end(args);
+}
+
/**
* lasso_init:
*
@@ -183,6 +193,7 @@ int lasso_init()
return LASSO_ERROR_UNDEFINED;
}
lasso_flag_parse_environment_variable();
+ xmlSetGenericErrorFunc(NULL, lasso_xml_generic_error_func);
return 0;
}