From f348a73bb1fcef2431229c44bfda3d01ca4c4275 Mon Sep 17 00:00:00 2001 From: Frederic Peters Date: Sat, 4 Mar 2006 15:50:31 +0000 Subject: cast strings to xmlChar* for correct signedness --- lasso/id-wsf/authentication.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lasso/id-wsf/authentication.c b/lasso/id-wsf/authentication.c index 42f0e2fe..a713e4c8 100644 --- a/lasso/id-wsf/authentication.c +++ b/lasso/id-wsf/authentication.c @@ -592,8 +592,8 @@ get_xmlNode(LassoNode *node, gboolean lasso_dump) xmlNode *xmlnode; xmlnode = parent_class->get_xmlNode(node, lasso_dump); - xmlNodeSetName(xmlnode, "Authentication"); - xmlSetProp(xmlnode, "AuthenticationDumpVersion", "2"); + xmlNodeSetName(xmlnode, (xmlChar*)"Authentication"); + xmlSetProp(xmlnode, (xmlChar*)"AuthenticationDumpVersion", (xmlChar*)"2"); return xmlnode; } -- cgit