# HG changeset patch # User Kirk Haines # Date 1229625263 25200 # Node ID 18caa29fe013b98e543a4114cc2d2034b6b04914 # Parent 038320b7357e4e1ca33ab8ff3e5e9ec0e741a9fe Removed some whitespace insertions that were altering the structure of the generated XML. diff -r 038320b7357e -r 18caa29fe013 loudmouth/lm-message-node.c --- a/loudmouth/lm-message-node.c Sun Nov 30 09:32:17 2008 +0100 +++ b/loudmouth/lm-message-node.c Thu Dec 18 11:34:23 2008 -0700 @@ -490,12 +490,13 @@ for (child = node->children; child; child = child->next) { gchar *child_str = lm_message_node_to_string (child); - g_string_append_c (ret, ' '); +/* g_string_append_c (ret, ' '); */ g_string_append (ret, child_str); g_free (child_str); } - g_string_append_printf (ret, "\n", node->name); + /* g_string_append_printf (ret, "\n", node->name); */ + g_string_append_printf (ret, "", node->name); return g_string_free (ret, FALSE); }