mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 12:19:49 +00:00
credui: The pszUserName parameter in CredUIPromptForCredentialsW is in/out so dump the string on entry to the function.
This commit is contained in:
parent
23c58d3a21
commit
ff014a8f6a
1 changed files with 2 additions and 2 deletions
|
@ -146,8 +146,8 @@ DWORD WINAPI CredUIPromptForCredentialsW(PCREDUI_INFOW pUIInfo,
|
|||
INT_PTR ret;
|
||||
struct cred_dialog_params params;
|
||||
|
||||
TRACE("(%p, %s, %p, %d, %p, %d, %p, %d, %p, 0x%08x)\n", pUIInfo,
|
||||
debugstr_w(pszTargetName), Reserved, dwAuthError, pszUsername,
|
||||
TRACE("(%p, %s, %p, %d, %s, %d, %p, %d, %p, 0x%08x)\n", pUIInfo,
|
||||
debugstr_w(pszTargetName), Reserved, dwAuthError, debugstr_w(pszUsername),
|
||||
ulUsernameMaxChars, pszPassword, ulPasswordMaxChars, pfSave, dwFlags);
|
||||
|
||||
params.pszTargetName = pszTargetName;
|
||||
|
|
Loading…
Reference in a new issue