[Galago-commits] r2956 - in trunk/libgalago: . libgalago
galago-commits at freedesktop.org
galago-commits at freedesktop.org
Thu Jan 4 11:42:52 PST 2007
Author: chipx86
Date: 2007-01-04 11:42:47 -0800 (Thu, 04 Jan 2007)
New Revision: 2956
Modified:
trunk/libgalago/ChangeLog
trunk/libgalago/libgalago/galago-core.c
Log:
Patch by Ross Burton to fix a typo in setting attributes. We were accessing the wrong iterator. This closes ticket #107.
Modified: trunk/libgalago/ChangeLog
===================================================================
--- trunk/libgalago/ChangeLog 2006-11-14 08:10:25 UTC (rev 2955)
+++ trunk/libgalago/ChangeLog 2007-01-04 19:42:47 UTC (rev 2956)
@@ -1,3 +1,9 @@
+Thu Jan 04 11:41:58 PST 2007 Christian Hammond <chipx86 at chipx86.com>
+
+ * libgalago/galago-core.c:
+ - Patch by Ross Burton to fix a typo in setting attributes. We were
+ accessing the wrong iterator. This closes ticket #107.
+
Tue Oct 24 17:24:46 PDT 2006 Christian Hammond <chipx86 at chipx86.com>
* libgalago/Makefile.am:
Modified: trunk/libgalago/libgalago/galago-core.c
===================================================================
--- trunk/libgalago/libgalago/galago-core.c 2006-11-14 08:10:25 UTC (rev 2955)
+++ trunk/libgalago/libgalago/galago-core.c 2007-01-04 19:42:47 UTC (rev 2956)
@@ -510,7 +510,7 @@
dbus_message_iter_next(&iter);
dbus_message_iter_recurse(&iter, &value_iter);
- arg_type = dbus_message_iter_get_arg_type(&iter);
+ arg_type = dbus_message_iter_get_arg_type(&value_iter);
switch (arg_type)
{
More information about the galago-commits
mailing list