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 <pobrn@protonmail.com>
This commit is contained in:
Barnabás Pőcze 2023-05-04 16:31:44 +02:00 committed by Simon McVittie
parent e8af583857
commit 0098e30602

View file

@ -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: