summaryrefslogtreecommitdiff
path: root/glib
diff options
context:
space:
mode:
authorRobert McQueen <robot101@debian.org>2006-02-15 23:45:48 +0000
committerRobert McQueen <robot101@debian.org>2006-02-15 23:45:48 +0000
commit0c04d2c69a65a5006093c5b9a83fcfb369683710 (patch)
treeb51c31e03cfe6a6f951d72ad96eb31c0c0e5d008 /glib
parentfa9011d8e91bbb35e9473a7e1bb9cfe57401cb8c (diff)
2006-02-16 Robert McQueen <robot101@debian.org>
* glib/dbus-gmain.c: Make the previous commit compile. * python/_dbus.py, python/matchrules.py: Patch from Ole Andre Ravnaas <ole.andre.ravnaas@collabora.co.uk> to allow you to specify sender_keyword="foo", path_keyword="bar" when adding a signal listener, so that you can bind to signals generically but still do something useful in your callback. * python/dbus_bindings.pyx: Demarshal the byte type as unsigned chars so that they're not cast to chars and made negative. Thanks to Jakub Stachowski for reporting this and testing the fix.
Diffstat (limited to 'glib')
-rw-r--r--glib/dbus-gmain.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/glib/dbus-gmain.c b/glib/dbus-gmain.c
index d271610..54f868d 100644
--- a/glib/dbus-gmain.c
+++ b/glib/dbus-gmain.c
@@ -698,11 +698,11 @@ dbus_server_setup_with_g_main (DBusServer *server,
/**
* Returns a connection to the given address.
- *
+ *
* (Internally, calls dbus_connection_open() then calls
* dbus_connection_setup_with_g_main() on the result.)
*
- * @param address address of the connection to open
+ * @param address address of the connection to open
* @param error address where an error can be returned.
* @returns a DBusConnection
*/
@@ -716,10 +716,10 @@ dbus_g_connection_open (const gchar *address,
g_return_val_if_fail (error == NULL || *error == NULL, NULL);
_dbus_g_value_types_init ();
-
+
dbus_error_init (&derror);
- connection = dbus_connection_open (socket, &derror);
+ connection = dbus_connection_open (address, &derror);
if (connection == NULL)
{
dbus_set_g_error (error, &derror);