Question with object_path registrations

Havoc Pennington hp@redhat.com
21 Sep 2003 12:06:45 -0400


On Sat, 2003-09-20 at 23:52, Seth Nickell wrote:
> I'm trying to get dbus_connection_register_object_path and company
> working, but they don't seem to do anything. As a simple test, I've
> tried doing:
> 
> dbus_connection_register_object_path(..."/test/path"...)
> 
> And then:
> 
> dbus_connection_list_registered(..."/test/path"...)
> 

To list /test/path you have to ask for the children of just /test (i.e.
you are listing "subdirectories")

Havoc