summaryrefslogtreecommitdiffstats
path: root/lasso
diff options
context:
space:
mode:
authorValery Febvre <vfebvre at easter-eggs.com>2004-08-19 18:42:21 +0000
committerValery Febvre <vfebvre at easter-eggs.com>2004-08-19 18:42:21 +0000
commitc058f4dde9e58c0a622b6d50b920830e27960a73 (patch)
treea5720a84f8f570c07fb5e08f40ed3505e9ce15d8 /lasso
parent1bc17f95405b1f6b1ec5e87e90da43f719fc1618 (diff)
downloadlasso-c058f4dde9e58c0a622b6d50b920830e27960a73.tar.gz
lasso-c058f4dde9e58c0a622b6d50b920830e27960a73.tar.xz
lasso-c058f4dde9e58c0a622b6d50b920830e27960a73.zip
Removed debug messages
Diffstat (limited to 'lasso')
-rw-r--r--lasso/xml/xml.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/lasso/xml/xml.c b/lasso/xml/xml.c
index 176e4d52..6b2d0447 100644
--- a/lasso/xml/xml.c
+++ b/lasso/xml/xml.c
@@ -1155,14 +1155,10 @@ lasso_node_impl_verify_signature(LassoNode *node,
/* FIXME : register 'AssertionID' ID attribute manually */
id_attr = lasso_node_get_attr(node, "AssertionID", NULL);
if (id_attr != NULL) {
- printf("OK AssertionID attr found, try to add new ID\n");
id_value = xmlNodeListGetString(doc, id_attr->children, 1);
id = xmlAddID(NULL, doc, id_value, id_attr);
- if (id == NULL) printf("Failed add new ID\n");
xmlFree(id_value);
}
- else
- printf("AssertionID attr not found\n");
/* find start node */
signature = xmlSecFindNode(xmlNode, xmlSecNodeSignature,