diff options
author | Anders Carlsson <andersca@codefactory.se> | 2003-03-14 00:59:12 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@codefactory.se> | 2003-03-14 00:59:12 +0000 |
commit | 81c30364c291045d556c88f6818033104e627b6e (patch) | |
tree | 8497f67d969d1a6251f907e112dba2a3f91b49cc | |
parent | d65b73884cb876276b6bd73f4b1dfcd920984a8a (diff) |
2003-03-14 Anders Carlsson <andersca@codefactory.se>
* bus/dispatch.c (send_service_nonexistent_error): Fix typo.
-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); |