From 749ae5083c2c663eb10a985bf5c27b99c5247542 Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Wed, 30 Jun 2010 13:18:42 +0200 Subject: English and message format fixes Signed-off-by: Denys Vlasenko --- src/CLI/dbus.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/CLI/dbus.cpp') diff --git a/src/CLI/dbus.cpp b/src/CLI/dbus.cpp index 2eddb5d9..55ebf9db 100644 --- a/src/CLI/dbus.cpp +++ b/src/CLI/dbus.cpp @@ -46,7 +46,7 @@ static DBusMessage* send_get_reply_and_unref(DBusMessage* msg) if (!received) { if (FALSE == dbus_connection_read_write(s_dbus_conn, -1)) - error_msg_and_die("DBus connection closed"); + error_msg_and_die("dbus connection closed"); continue; } @@ -100,7 +100,7 @@ static DBusMessage* send_get_reply_and_unref(DBusMessage* msg) DBUS_TYPE_STRING, &warning_msg, DBUS_TYPE_INVALID)) { - error_msg_and_die("dbus Update message: arguments mismatch"); + error_msg_and_die("dbus Warning message: arguments mismatch"); } log(">! %s\n", warning_msg); } @@ -114,7 +114,7 @@ static DBusMessage* send_get_reply_and_unref(DBusMessage* msg) if (tp == DBUS_MESSAGE_TYPE_ERROR && dbus_message_get_reply_serial(received) == serial ) { - error_msg_and_die("Dbus call returned error: '%s'", error_str); + error_msg_and_die("dbus call returned error: '%s'", error_str); } dbus_message_unref(received); -- cgit