From afc2a6e56a65ff9154d4eb1b346157a7d625945d Mon Sep 17 00:00:00 2001 From: Havoc Pennington Date: Wed, 30 Aug 2006 01:27:44 +0000 Subject: 2006-08-29 Havoc Pennington * 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. --- test/test-service.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'test') 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; -- cgit