[glibmm] DBusConnection: Fix a typo in implementation.



commit f6ffd05365161b7b21e1a7a22d20a7ecf3576e0f
Author: Murray Cumming <murrayc murrayc com>
Date:   Mon Oct 1 10:09:29 2012 +0200

    DBusConnection: Fix a typo in implementation.
    
    	* gio/src/dbusconnection.ccg:
    	g_dbus_connection_call_with_unix_fd_list() was mistyped. I wonder why
    	the compiler did not complain.

 ChangeLog                  |    8 ++++++++
 gio/src/dbusconnection.ccg |    2 +-
 2 files changed, 9 insertions(+), 1 deletions(-)
---
diff --git a/ChangeLog b/ChangeLog
index 55fddc7..ecdc7f3 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2012-10-01  Murray Cumming  <murrayc murrayc com>
+
+	DBusConnection: Fix a typo in implementation.
+
+	* gio/src/dbusconnection.ccg:
+	g_dbus_connection_call_with_unix_fd_list() was mistyped. I wonder why
+	the compiler did not complain.
+
 2012-09-30  Josà Alburquerque  <jaalburquerque gmail com>
 
 	ActionGroup: Add the query_action() methods.
diff --git a/gio/src/dbusconnection.ccg b/gio/src/dbusconnection.ccg
index 288223f..e10cba4 100644
--- a/gio/src/dbusconnection.ccg
+++ b/gio/src/dbusconnection.ccg
@@ -739,7 +739,7 @@ void Connection::call(
   // and deleted in the callback.
   SlotAsyncReady* slot_copy = new SlotAsyncReady(slot);
 
-  g_dbus_connection_call_with_uinx_fd_list(gobj(), bus_name.c_str(),
+  g_dbus_connection_call_with_unix_fd_list(gobj(), bus_name.c_str(),
     object_path.c_str(), interface_name.c_str(), method_name.c_str(),
     const_cast<GVariant*>(parameters.gobj()), reply_type.gobj(),
     static_cast<GDBusCallFlags>(flags), timeout_msec, Glib::unwrap(fd_list),



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]