diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | bus/dispatch.c | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +2003-03-14 Anders Carlsson <andersca@codefactory.se> + + * bus/dispatch.c (send_service_nonexistent_error): Fix typo. + 2003-03-13 Havoc Pennington <hp@pobox.com> * bus/test.c, bus/test.h, bus/Makefile.am, bus/test-main.c: diff --git a/bus/dispatch.c b/bus/dispatch.c index 1d2ea1c2..59705912 100644 --- a/bus/dispatch.c +++ b/bus/dispatch.c @@ -110,7 +110,7 @@ send_service_nonexistent_error (BusTransaction *transaction, if (!_dbus_string_append (&error_message, "Service \"") || !_dbus_string_append (&error_message, service_name) || - !_dbus_string_append (&error_message, "does not exist")) + !_dbus_string_append (&error_message, "\" does not exist")) { _dbus_string_free (&error_message); BUS_SET_OOM (error); |