From: Barnabás Pőcze Date: Thu, 4 May 2023 14:31:44 +0000 (+0200) Subject: dbus-sysdeps-win: do not log function name twice X-Git-Tag: dbus-1.15.6~13^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0098e306026ba5d0d1c4e4d975c06e9016502dfa;p=thirdparty%2Fdbus.git dbus-sysdeps-win: do not log function name twice `_dbus_verbose()` already logs the function name, do not log it again in the message. Signed-off-by: Barnabás Pőcze --- diff --git a/dbus/dbus-sysdeps-win.c b/dbus/dbus-sysdeps-win.c index 11064bb43..fa4083286 100644 --- a/dbus/dbus-sysdeps-win.c +++ b/dbus/dbus-sysdeps-win.c @@ -1019,12 +1019,12 @@ _dbus_getsid(char **sid, dbus_pid_t process_id) psid = token_user->User.Sid; if (!IsValidSid (psid)) { - _dbus_verbose("%s invalid sid\n",__FUNCTION__); + _dbus_verbose("invalid sid\n"); goto failed; } if (!ConvertSidToStringSidA (psid, sid)) { - _dbus_verbose("%s invalid sid\n",__FUNCTION__); + _dbus_verbose("invalid sid\n"); goto failed; } //okay: