From fe4715b656237b89767b5dc0cba4c107541b6e0d Mon Sep 17 00:00:00 2001 From: Havoc Pennington Date: Sat, 16 Sep 2006 19:24:08 +0000 Subject: 2006-09-16 Havoc Pennington * dbus/dbus-transport.c (_dbus_transport_open): modify to delegate to _dbus_transport_open_platform_specific, _dbus_transport_open_socket, and _dbus_transport_open_debug_pipe * dbus/dbus-transport-protected.h: add _dbus_transport_open_platform_specific --- dbus/dbus-server-unix.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'dbus/dbus-server-unix.c') diff --git a/dbus/dbus-server-unix.c b/dbus/dbus-server-unix.c index 873307ec..ffc68709 100644 --- a/dbus/dbus-server-unix.c +++ b/dbus/dbus-server-unix.c @@ -67,9 +67,9 @@ _dbus_server_listen_platform_specific (DBusAddressEntry *entry, if (path == NULL && tmpdir == NULL && abstract == NULL) { - _dbus_server_set_bad_address(error, "unix", - "path or tmpdir or abstract", - NULL); + _dbus_set_bad_address(error, "unix", + "path or tmpdir or abstract", + NULL); return DBUS_SERVER_LISTEN_BAD_ADDRESS; } @@ -77,8 +77,8 @@ _dbus_server_listen_platform_specific (DBusAddressEntry *entry, (path && abstract) || (tmpdir && abstract)) { - _dbus_server_set_bad_address(error, NULL, NULL, - "cannot specify two of \"path\" and \"tmpdir\" and \"abstract\" at the same time"); + _dbus_set_bad_address(error, NULL, NULL, + "cannot specify two of \"path\" and \"tmpdir\" and \"abstract\" at the same time"); return DBUS_SERVER_LISTEN_BAD_ADDRESS; } -- cgit