From 942a69b1cd53fc1c1a1835aaf25101b03b9527e5 Mon Sep 17 00:00:00 2001 From: Anders Carlsson Date: Tue, 4 Mar 2003 23:02:40 +0000 Subject: 2003-03-05 Anders Carlsson * dbus/dbus-transport.c: (_dbus_transport_open): Remove duplicate "tcp" entry. * doc/dbus-specification.sgml: Clarify some things. --- dbus/dbus-transport.c | 9 --------- 1 file changed, 9 deletions(-) (limited to 'dbus/dbus-transport.c') diff --git a/dbus/dbus-transport.c b/dbus/dbus-transport.c index fc7fd33f..30da077f 100644 --- a/dbus/dbus-transport.c +++ b/dbus/dbus-transport.c @@ -219,15 +219,6 @@ _dbus_transport_open (const char *address, transport = _dbus_transport_new_for_tcp_socket (host, lport, FALSE, result); } - else if (strcmp (method, "tcp") == 0) - { - const char *path = dbus_address_entry_get_value (entries[i], "path"); - - if (path == NULL) - goto bad_address; - - transport = _dbus_transport_new_for_domain_socket (path, FALSE, result); - } #ifdef DBUS_BUILD_TESTS else if (strcmp (method, "debug") == 0) { -- cgit