summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNicolas Clapies <nclapies@entrouvert.com>2004-08-04 15:05:11 +0000
committerNicolas Clapies <nclapies@entrouvert.com>2004-08-04 15:05:11 +0000
commit4f32f67075f3e88edbb132a2efab81b5fbd32ffc (patch)
tree25136487081dc5091a3e067cbc05fd5d4fdffd86
parent39823a5f49764426271d82b891f8fb0b31c45885 (diff)
downloadlasso-4f32f67075f3e88edbb132a2efab81b5fbd32ffc.tar.gz
lasso-4f32f67075f3e88edbb132a2efab81b5fbd32ffc.tar.xz
lasso-4f32f67075f3e88edbb132a2efab81b5fbd32ffc.zip
*** empty log message ***
-rw-r--r--lasso/id-ff/session.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/lasso/id-ff/session.c b/lasso/id-ff/session.c
index 0bb039b8..72992634 100644
--- a/lasso/id-ff/session.c
+++ b/lasso/id-ff/session.c
@@ -261,6 +261,7 @@ lasso_session_remove_assertion(LassoSession *session,
/* remove the assertion */
assertion = lasso_session_get_assertion(session, remote_providerID);
if (assertion != NULL) {
+ debug("Remove assertion of remote provider id %s\n", remote_providerID);
g_hash_table_remove(session->assertions, remote_providerID);
lasso_node_destroy(assertion);
}
@@ -268,6 +269,7 @@ lasso_session_remove_assertion(LassoSession *session,
/* remove the remote provider id */
for(i = 0; i<session->providerIDs->len; i++) {
if(xmlStrEqual(remote_providerID, g_ptr_array_index(session->providerIDs, i))) {
+ debug("Remove remote provider id %s\n", remote_providerID);
g_ptr_array_remove_index(session->providerIDs, i);
break;
}