summaryrefslogtreecommitdiffstats
path: root/audio
diff options
context:
space:
mode:
authorJohan Hedberg <johan.hedberg@nokia.com>2008-12-05 15:37:41 +0200
committerJohan Hedberg <johan.hedberg@nokia.com>2008-12-08 16:10:59 +0200
commitfa9265d12f920a8215b30f5b544b20ebbd166cf9 (patch)
treed83981b2e348aa18c249a8cdd7684e1a1efc5dc0 /audio
parentd2d899b5ffdc0c15c1511a6beebe75eeb6f338a8 (diff)
Remove unnecessary debug print from signal_filter
Diffstat (limited to 'audio')
-rw-r--r--audio/telephony-maemo.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/audio/telephony-maemo.c b/audio/telephony-maemo.c
index a5689fb1..760caed3 100644
--- a/audio/telephony-maemo.c
+++ b/audio/telephony-maemo.c
@@ -1272,11 +1272,10 @@ static void handle_hal_property_modified(DBusMessage *msg)
static DBusHandlerResult signal_filter(DBusConnection *conn,
DBusMessage *msg, void *data)
{
- const char *interface = dbus_message_get_interface(msg);
- const char *member = dbus_message_get_member(msg);
const char *path = dbus_message_get_path(msg);
- debug("telephony-maemo: received %s %s.%s", path, interface, member);
+ if (dbus_message_get_type(msg) != DBUS_MESSAGE_TYPE_SIGNAL)
+ return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
if (dbus_message_is_signal(msg, CSD_CALL_INTERFACE, "Coming"))
handle_incoming_call(msg);