summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorHavoc Pennington <hp@redhat.com>2006-08-30 01:27:44 +0000
committerHavoc Pennington <hp@redhat.com>2006-08-30 01:27:44 +0000
commitafc2a6e56a65ff9154d4eb1b346157a7d625945d (patch)
treea1f85ab97ba8697d11083b836a5d80915d442223 /test
parent338c96b4c69c9d870f41aa6d836338d89e6ed9c3 (diff)
2006-08-29 Havoc Pennington <hp@redhat.com>
* test/test-service.c (path_message_func): fix lack of return value * dbus/dbus-sysdeps.c (_dbus_printf_string_upper_bound): fix formatting, remove #ifdef, and fix docs. #ifdef doesn't make any more sense than on anything else in this file. (_dbus_get_tmpdir): add const to return value, and keep the results of the various getenv around in a static variable.
Diffstat (limited to 'test')
-rw-r--r--test/test-service.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/test-service.c b/test/test-service.c
index ed47a506..6a633b77 100644
--- a/test/test-service.c
+++ b/test/test-service.c
@@ -293,6 +293,8 @@ path_message_func (DBusConnection *connection,
if (!dbus_connection_send (connection, reply, NULL))
die ("No memory");
+
+ return DBUS_HANDLER_RESULT_HANDLED;
}
else
return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;