typo. should be member, not method
authorrephorm <rephorm>
Tue, 3 Oct 2006 02:19:14 +0000 (02:19 +0000)
committerrephorm <rephorm@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Tue, 3 Oct 2006 02:19:14 +0000 (02:19 +0000)
SVN revision: 26311

legacy/ecore/src/lib/ecore_dbus/ecore_dbus_object.c

index 98008a6..0ad27df 100644 (file)
@@ -156,7 +156,7 @@ ecore_dbus_object_method_add(Ecore_DBus_Object *obj, const char *interface, cons
    ecore_list_append(obj->methods, m);
 
    /* add match to server for this method */
-   snprintf(buf, sizeof(buf), "type=method_call,path=%s,interface=%s,method=%s", obj->path, interface, method_name);
+   snprintf(buf, sizeof(buf), "type=method_call,path=%s,interface=%s,member=%s", obj->path, interface, method_name);
    ecore_dbus_method_add_match(obj->server, buf, NULL, NULL, NULL);
 
    return m;