From: Ralf Habacker Date: Sun, 4 Oct 2015 08:33:32 +0000 (+0200) Subject: Display autolaunch scope on verbose print of daemon found message on windows. X-Git-Tag: dbus-1.10.4~30 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9a8a6e28822e40d896a5d5bdb08175b168842d5f;p=thirdparty%2Fdbus.git Display autolaunch scope on verbose print of daemon found message on windows. Bug: https://bugs.freedesktop.org/show_bug.cgi?id=92080 Reviewed-by: Simon McVittie --- diff --git a/dbus/dbus-sysdeps-win.c b/dbus/dbus-sysdeps-win.c index 69644b00d..65f765337 100644 --- a/dbus/dbus-sysdeps-win.c +++ b/dbus/dbus-sysdeps-win.c @@ -3117,8 +3117,8 @@ _dbus_get_autolaunch_address (const char *scope, DBusString *address, if (_dbus_daemon_already_runs(address,&shm_name,scope)) { - _dbus_verbose( "found running dbus daemon at %s\n", - _dbus_string_get_const_data (&shm_name) ); + _dbus_verbose( "found running dbus daemon for scope '%s' at %s\n", + scope ? scope : "", _dbus_string_get_const_data (&shm_name) ); retval = TRUE; goto out; }