diff options
author | Havoc Pennington <hp@redhat.com> | 2003-03-25 04:37:08 +0000 |
---|---|---|
committer | Havoc Pennington <hp@redhat.com> | 2003-03-25 04:37:08 +0000 |
commit | ce4fd314c6be9bfee16a172d5ca34e5097d309fc (patch) | |
tree | 744b8524f183a0fbb009d917029c9a129b34da9e /dbus/dbus-transport-unix.h | |
parent | 44fff656885ac32e319feb98fd0d06680d602977 (diff) |
2003-03-24 Havoc Pennington <hp@redhat.com>
* dbus/dbus-sysdeps.c (_dbus_set_fd_nonblocking): move to this
file
* dbus/dbus-errors.c (dbus_set_error, dbus_set_error_const): allow
NULL argument for "message" if the error is a well-known one,
fill in a generic message in this case.
* dbus/dbus-errors.h (DBusResultCode): Kill DBusResultCode in
favor of DBusError
* bus/test.c (bus_test_flush_bus): add
* bus/policy.c (bus_policy_test): test code stub
Diffstat (limited to 'dbus/dbus-transport-unix.h')
-rw-r--r-- | dbus/dbus-transport-unix.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dbus/dbus-transport-unix.h b/dbus/dbus-transport-unix.h index 1fd0134d..595fbc18 100644 --- a/dbus/dbus-transport-unix.h +++ b/dbus/dbus-transport-unix.h @@ -31,11 +31,11 @@ DBusTransport* _dbus_transport_new_for_fd (int fd, dbus_bool_t server); DBusTransport* _dbus_transport_new_for_domain_socket (const char *path, dbus_bool_t server, - DBusResultCode *result); + DBusError *error); DBusTransport* _dbus_transport_new_for_tcp_socket (const char *host, dbus_int32_t port, dbus_bool_t server, - DBusResultCode *result); + DBusError *error); DBUS_END_DECLS; |