mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2026-01-06 04:50:14 +01:00
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:
parent
e8af583857
commit
0098e30602
1 changed files with 2 additions and 2 deletions
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue