From: Dan Winship Date: Wed, 16 Nov 2005 21:04:41 +0000 (+0000) Subject: add the "name" element to the struct member. #321362, patch from Sebastian X-Git-Tag: LIBSOUP_2_2_90_NOT_A_REAL_RELEASE~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1c677a4870af4c50f21f894bf5a75456d1d93443;p=platform%2Fupstream%2Flibsoup.git add the "name" element to the struct member. #321362, patch from Sebastian * libsoup/soup-xmlrpc-message.c (soup_xmlrpc_message_start_member): add the "name" element to the struct member. #321362, patch from Sebastian Bauer. --- diff --git a/ChangeLog b/ChangeLog index 1a921f2..73f391d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2005-11-16 Dan Winship + + * 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 * configure.in: bump version to 2.2.90. This will not be diff --git a/libsoup/soup-xmlrpc-message.c b/libsoup/soup-xmlrpc-message.c index 55548fc..e280990 100644 --- a/libsoup/soup-xmlrpc-message.c +++ b/libsoup/soup-xmlrpc-message.c @@ -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