summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorValery Febvre <vfebvre at easter-eggs.com>2004-08-02 23:49:46 +0000
committerValery Febvre <vfebvre at easter-eggs.com>2004-08-02 23:49:46 +0000
commit2586368612f993fdaee361cdbd4df889f29972f9 (patch)
tree648cdad081280de8ebb494114ea4824ed2b99473
parent601e8b7c135c2f829863aa5412c73be8c8fc3818 (diff)
downloadlasso-2586368612f993fdaee361cdbd4df889f29972f9.tar.gz
lasso-2586368612f993fdaee361cdbd4df889f29972f9.tar.xz
lasso-2586368612f993fdaee361cdbd4df889f29972f9.zip
Replaced two G_LOG_LEVEL_ERROR by G_LOG_LEVEL_CRITICAL
-rw-r--r--lasso/id-ff/session.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lasso/id-ff/session.c b/lasso/id-ff/session.c
index 1d555bc8..e92e71f3 100644
--- a/lasso/id-ff/session.c
+++ b/lasso/id-ff/session.c
@@ -101,7 +101,7 @@ lasso_session_add_assertion(LassoSession *session,
}
}
if(found == TRUE) {
- message(G_LOG_LEVEL_ERROR, "A provider id already exists\n");
+ message(G_LOG_LEVEL_CRITICAL, "A provider id already exists\n");
return(-4);
}
@@ -221,7 +221,7 @@ lasso_session_get_authentication_method(LassoSession *session,
as = lasso_node_get_child(assertion, "AuthenticationStatement", NULL, NULL);
authentication_method = lasso_node_get_attr_value(as, "AuthenticationMethod", &err);
if (authentication_method == NULL) {
- message(G_LOG_LEVEL_ERROR, err->message);
+ message(G_LOG_LEVEL_CRITICAL, err->message);
g_error_free(err);
goto done;
}