Commit ff014a8f authored by Rob Shearman's avatar Rob Shearman Committed by Alexandre Julliard

credui: The pszUserName parameter in CredUIPromptForCredentialsW is in/out so…

credui: The pszUserName parameter in CredUIPromptForCredentialsW is in/out so dump the string on entry to the function.
parent 23c58d3a
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment