add the "name" element to the struct member. #321362, patch from Sebastian
authorDan Winship <danw@src.gnome.org>
Wed, 16 Nov 2005 21:04:41 +0000 (21:04 +0000)
committerDan Winship <danw@src.gnome.org>
Wed, 16 Nov 2005 21:04:41 +0000 (21:04 +0000)
* libsoup/soup-xmlrpc-message.c
(soup_xmlrpc_message_start_member): add the "name" element to the
struct member. #321362, patch from Sebastian Bauer.

ChangeLog
libsoup/soup-xmlrpc-message.c

index 1a921f2..73f391d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2005-11-16  Dan Winship  <danw@novell.com>
+
+       * libsoup/soup-xmlrpc-message.c
+       (soup_xmlrpc_message_start_member): add the "name" element to the
+       struct member. #321362, patch from Sebastian Bauer.
+
 2005-11-10  Dan Winship  <danw@novell.com>
 
        * configure.in: bump version to 2.2.90. This will not be
index 55548fc..e280990 100644 (file)
@@ -267,6 +267,7 @@ soup_xmlrpc_message_start_member (SoupXmlrpcMessage *msg, const char *name)
        priv = SOUP_XMLRPC_MESSAGE_GET_PRIVATE (msg);
 
        priv->last_node = xmlNewChild (priv->last_node, NULL, "member", NULL);
+       xmlNewChild (priv->last_node, NULL, "name", name);
 }
 
 void