diff options
author | Havoc Pennington <hp@redhat.com> | 2005-01-16 15:51:55 +0000 |
---|---|---|
committer | Havoc Pennington <hp@redhat.com> | 2005-01-16 15:51:55 +0000 |
commit | 31988af4089f3793940417535f8eabaae1ac26c8 (patch) | |
tree | 2b0d7016481a34764dd35b6391d05e2629a45f2f /bus | |
parent | b3416423b1e3c17357833d896c1b7cd684660771 (diff) |
2005-01-16 Havoc Pennington <hp@redhat.com>
* Add and fix docs according to Doxygen warnings throughout
source.
* dbus/dbus-marshal-recursive.c
(_dbus_type_reader_array_is_empty): change this to just call
array_reader_get_array_len() and make it static
* dbus/dbus-message.c (dbus_message_iter_get_element_type): rename
from get_array_type
(dbus_message_iter_init_append): rename from append_iter_init
* dbus/dbus-marshal-recursive.c
(_dbus_type_reader_get_element_type): rename from
_dbus_type_reader_get_array_type
Diffstat (limited to 'bus')
-rw-r--r-- | bus/connection.c | 2 | ||||
-rw-r--r-- | bus/driver.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/bus/connection.c b/bus/connection.c index 140c7300..474a3375 100644 --- a/bus/connection.c +++ b/bus/connection.c @@ -1417,7 +1417,7 @@ bus_pending_reply_send_no_reply (BusConnections *connections, goto out; errmsg = "Message did not receive a reply (timeout by message bus)"; - dbus_message_append_iter_init (message, &iter); + dbus_message_iter_init_append (message, &iter); if (!dbus_message_iter_append_basic (&iter, DBUS_TYPE_STRING, &errmsg)) goto out; diff --git a/bus/driver.c b/bus/driver.c index 99e66752..cb641031 100644 --- a/bus/driver.c +++ b/bus/driver.c @@ -397,7 +397,7 @@ bus_driver_handle_list_services (DBusConnection *connection, return FALSE; } - dbus_message_append_iter_init (reply, &iter); + dbus_message_iter_init_append (reply, &iter); if (!dbus_message_iter_open_container (&iter, DBUS_TYPE_ARRAY, DBUS_TYPE_STRING_AS_STRING, |