dbus/dbus dbus-pending-call.c,1.13,1.14

Havoc Pennington hp at kemper.freedesktop.org
Sun Jul 16 08:35:27 PDT 2006


Update of /cvs/dbus/dbus/dbus
In directory kemper:/tmp/cvs-serv32688/dbus

Modified Files:
	dbus-pending-call.c 
Log Message:
2006-07-16  Havoc Pennington  <hp at redhat.com>

	* dbus/dbus-pending-call.c (_dbus_pending_call_set_timeout_error):
	Improve the error message on reply timeout



Index: dbus-pending-call.c
===================================================================
RCS file: /cvs/dbus/dbus/dbus/dbus-pending-call.c,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- dbus-pending-call.c	14 Jul 2006 03:09:22 -0000	1.13
+++ dbus-pending-call.c	16 Jul 2006 15:35:25 -0000	1.14
@@ -304,7 +304,11 @@
   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;
 



More information about the dbus-commit mailing list