From f5cf675641e63cefc36c8a9a7a5872cc8600abcd Mon Sep 17 00:00:00 2001 From: Havoc Pennington Date: Fri, 21 Jan 2005 03:44:10 +0000 Subject: 2005-01-20 Havoc Pennington * doc/dbus-tutorial.xml: replace > with > * bus/services.c (bus_registry_acquire_service): validate the name and return a better error if it's no good. * doc/dbus-specification.xml: note NO_AUTO_START change * dbus/dbus-protocol.h (DBUS_HEADER_FLAG_NO_AUTO_START): change from AUTO_START, we're toggling the default * bus/dispatch.c: adapt the tests to change of auto-start default --- doc/dbus-tutorial.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'doc/dbus-tutorial.xml') diff --git a/doc/dbus-tutorial.xml b/doc/dbus-tutorial.xml index 44f2f7ca..ccb12d4c 100644 --- a/doc/dbus-tutorial.xml +++ b/doc/dbus-tutorial.xml @@ -408,7 +408,7 @@ method call on a particular object instance, a number of nested components have to be named: - Address -> [Bus Name] -> Path -> Interface -> Method + Address -> [Bus Name] -> Path -> Interface -> Method The bus name is in brackets to indicate that it's optional -- you only provide a name to route the method call to the right application @@ -467,7 +467,7 @@ main (int argc, char **argv) if (connection == NULL) { g_printerr ("Failed to open connection to bus: %s\n", - error->message); + error->message); g_error_free (error); exit (1); } @@ -490,7 +490,7 @@ main (int argc, char **argv) DBUS_TYPE_INVALID)) { g_printerr ("Failed to complete ListNames call: %s\n", - error->message); + error->message); g_error_free (error); exit (1); } -- cgit