diff options
| author | Denys Vlasenko <vda.linux@googlemail.com> | 2010-06-30 13:18:42 +0200 |
|---|---|---|
| committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-06-30 13:18:42 +0200 |
| commit | 749ae5083c2c663eb10a985bf5c27b99c5247542 (patch) | |
| tree | 3b5ea061332737d15e4d9f8ca8f265377886a1a5 /src/CLI/dbus.cpp | |
| parent | 842d1a6d7ab1fe62c6e9bce6d776b0d73dab0e23 (diff) | |
| download | abrt-749ae5083c2c663eb10a985bf5c27b99c5247542.tar.gz abrt-749ae5083c2c663eb10a985bf5c27b99c5247542.tar.xz abrt-749ae5083c2c663eb10a985bf5c27b99c5247542.zip | |
English and message format fixes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'src/CLI/dbus.cpp')
| -rw-r--r-- | src/CLI/dbus.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
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); |
