From: Anders Carlsson Date: Fri, 14 Mar 2003 00:59:12 +0000 (+0000) Subject: 2003-03-14 Anders Carlsson X-Git-Tag: dbus-0.6~23 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=81c30364c291045d556c88f6818033104e627b6e;p=platform%2Fupstream%2Fdbus.git 2003-03-14 Anders Carlsson * bus/dispatch.c (send_service_nonexistent_error): Fix typo. --- diff --git a/ChangeLog b/ChangeLog index ac6dd55..5ba1f65 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2003-03-14 Anders Carlsson + + * bus/dispatch.c (send_service_nonexistent_error): Fix typo. + 2003-03-13 Havoc Pennington * bus/test.c, bus/test.h, bus/Makefile.am, bus/test-main.c: diff --git a/bus/dispatch.c b/bus/dispatch.c index 1d2ea1c..5970591 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);