summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRalf Habacker <ralf.habacker@freenet.de>2015-02-17 08:38:44 +0100
committerSimon McVittie <simon.mcvittie@collabora.co.uk>2015-02-24 11:48:40 +0000
commite78bac35cc0ddf7cab7c90e7be05491d0d3c58db (patch)
tree0a9ce1f0a396ef6a42d3ecd0ba79bf98d997e08b
parent3c889c694dbc4d256a30ee0e794ccfff7ac950ad (diff)
downloaddbus-e78bac35cc0ddf7cab7c90e7be05491d0d3c58db.tar.gz
dbus-monitor: Keep parameter list of method returns in --monitor mode in sync with --profile mode.
Bug: https://bugs.freedesktop.org/show_bug.cgi?id=88896 Reviewed-by: Simon McVittie <simon.mcvittie@collabora.co.uk>
-rw-r--r--tools/dbus-print-message.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/dbus-print-message.c b/tools/dbus-print-message.c
index e4b8c8a6..27c88964 100644
--- a/tools/dbus-print-message.c
+++ b/tools/dbus-print-message.c
@@ -559,7 +559,8 @@ print_message (DBusMessage *message, dbus_bool_t literal)
break;
case DBUS_MESSAGE_TYPE_METHOD_RETURN:
- printf (" reply_serial=%u\n",
+ printf (" serial=%u reply_serial=%u\n",
+ dbus_message_get_serial (message),
dbus_message_get_reply_serial (message));
break;