mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2026-01-20 05:30:29 +01:00
2006-07-16 Havoc Pennington <hp@redhat.com>
* dbus/dbus-pending-call.c (_dbus_pending_call_set_timeout_error): Improve the error message on reply timeout
This commit is contained in:
parent
f86f2617b8
commit
d330ea7d1c
2 changed files with 10 additions and 1 deletions
|
|
@ -1,3 +1,8 @@
|
|||
2006-07-16 Havoc Pennington <hp@redhat.com>
|
||||
|
||||
* dbus/dbus-pending-call.c (_dbus_pending_call_set_timeout_error):
|
||||
Improve the error message on reply timeout
|
||||
|
||||
2006-07-14 John (J5) Palmieri <johnp@redhat.com>
|
||||
|
||||
* Remove all bindings
|
||||
|
|
|
|||
|
|
@ -304,7 +304,11 @@ _dbus_pending_call_set_timeout_error (DBusPendingCall *pending,
|
|||
DBusMessage *reply;
|
||||
|
||||
reply = dbus_message_new_error (message, DBUS_ERROR_NO_REPLY,
|
||||
"No reply within specified time");
|
||||
"Did not receive a reply. Possible causes include: "
|
||||
"the remote application did not send a reply, "
|
||||
"the message bus security policy blocked the reply, "
|
||||
"the reply timeout expired, or "
|
||||
"the network connection was broken.");
|
||||
if (reply == NULL)
|
||||
return FALSE;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue