From ff014a8f6a58760486fe7687295c0e955acadc83 Mon Sep 17 00:00:00 2001 From: Rob Shearman Date: Sun, 16 Sep 2007 22:24:43 +0100 Subject: [PATCH] credui: The pszUserName parameter in CredUIPromptForCredentialsW is in/out so dump the string on entry to the function. --- dlls/credui/credui_main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/credui/credui_main.c b/dlls/credui/credui_main.c index 1d646f3302..fc7bfe04fd 100644 --- a/dlls/credui/credui_main.c +++ b/dlls/credui/credui_main.c @@ -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; -- 2.32.0.93.g670b81a890