From 84f99b7f8b503cb6dcca3e08025f4257fa7121a9 Mon Sep 17 00:00:00 2001 From: Ralf Habacker Date: Tue, 17 Feb 2015 08:26:54 +0100 Subject: [PATCH 3/4] dbus-monitor: Keep term 'dest' in --monitor output in sync with related watch expression. Bug: https://bugs.freedesktop.org/show_bug.cgi?id=88896 --- tools/dbus-print-message.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/dbus-print-message.c b/tools/dbus-print-message.c index 186ab8d..766a1d9 100644 --- a/tools/dbus-print-message.c +++ b/tools/dbus-print-message.c @@ -545,12 +545,12 @@ print_message (DBusMessage *message, dbus_bool_t literal) struct timeval t; if (gettimeofday (&t, NULL) < 0) - printf ("%s sender=%s -> dest=%s", + printf ("%s sender=%s -> destination=%s", type_to_name (message_type), sender ? sender : "(null sender)", destination ? destination : "(null destination)"); else - printf ("%s time=%lu.%06lu sender=%s -> dest=%s", + printf ("%s time=%lu.%06lu sender=%s -> destination=%s", type_to_name (message_type), (unsigned long) t.tv_sec, (unsigned long) t.tv_usec, sender ? sender : "(null sender)", -- 1.8.4.5