On Sat, 3 Dec 2011 07:01:33 +0100 (CET)
Vincent Torri <vto...@univ-evry.fr> wrote:

> 
> 
> On Fri, 2 Dec 2011, Enlightenment SVN wrote:
> 
> > Log:
> > fix incorrect usage of dbus_message_iter_open_container
> 
> changelog ? backport to 1.0, 1.1 ?
> 
> Vincent
> 
> >
> >
> > Author:       discomfitor
> > Date:         2011-12-02 20:15:50 -0800 (Fri, 02 Dec 2011)
> > New Revision: 65836
> > Trac:         http://trac.enlightenment.org/e/changeset/65836
> >
> > Modified:
> >  trunk/e_dbus/src/lib/notification/marshal.c
> >
> > Modified: trunk/e_dbus/src/lib/notification/marshal.c
> > ===================================================================
> > --- trunk/e_dbus/src/lib/notification/marshal.c     2011-12-03 03:50:20
> > UTC (rev 65835) +++ trunk/e_dbus/src/lib/notification/marshal.c
> > 2011-12-03 04:15:50 UTC (rev 65836) @@ -12,7 +12,7 @@
> > {
> >    DBusMessageIter entry, variant;
> >
> > -   if (dbus_message_iter_open_container(iter, DBUS_TYPE_DICT_ENTRY, "sv",
> > &entry))
> > +   if (dbus_message_iter_open_container(iter, DBUS_TYPE_DICT_ENTRY, NULL,
> > &entry)) {
> >         dbus_message_iter_append_basic(&entry, DBUS_TYPE_STRING, &key);
> >         if (dbus_message_iter_open_container(&entry, DBUS_TYPE_VARIANT,
> > type_str, &variant)) @@ -37,7 +37,7 @@
> > {
> >    DBusMessageIter entry, variant;
> >
> > -   if (dbus_message_iter_open_container(iter, DBUS_TYPE_DICT_ENTRY, "sv",
> > &entry))
> > +   if (dbus_message_iter_open_container(iter, DBUS_TYPE_DICT_ENTRY, NULL,
> > &entry)) {
> >         dbus_message_iter_append_basic(&entry, DBUS_TYPE_STRING, &key);
> >         if (dbus_message_iter_open_container(&entry, DBUS_TYPE_VARIANT,
> > "s", &variant)) @@ -91,7 +91,7 @@
> >
> >    if (!key || !value) return;
> >
> > -   if (dbus_message_iter_open_container(iter, DBUS_TYPE_DICT_ENTRY, "sv",
> > &entry))
> > +   if (dbus_message_iter_open_container(iter, DBUS_TYPE_DICT_ENTRY, NULL,
> > &entry)) {
> >         dbus_message_iter_append_basic(&entry, DBUS_TYPE_STRING, &key);
> >         if (dbus_message_iter_open_container(&entry, DBUS_TYPE_VARIANT,
> > "i", &variant))
> >
> >
might be cosmetic, waiting for test results

------------------------------------------------------------------------------
All the data continuously generated in your IT infrastructure 
contains a definitive record of customers, application performance, 
security threats, fraudulent activity, and more. Splunk takes this 
data and makes sense of it. IT sense. And common sense.
http://p.sf.net/sfu/splunk-novd2d
_______________________________________________
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

Reply via email to