Hans Leidekker : wininet: Don't trace the password in InternetConnectW.
Module: wine Branch: master Commit: e5ce90ed1b88bba8389aabfcb9ad0b6f837f6a14 URL: http://source.winehq.org/git/wine.git/?a=commit;h=e5ce90ed1b88bba8389aabfcb9... Author: Hans Leidekker <hans(a)codeweavers.com> Date: Thu Aug 27 15:05:16 2015 +0200 wininet: Don't trace the password in InternetConnectW. --- dlls/wininet/internet.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/dlls/wininet/internet.c b/dlls/wininet/internet.c index ee04f40..c64816e 100644 --- a/dlls/wininet/internet.c +++ b/dlls/wininet/internet.c @@ -1317,9 +1317,8 @@ HINTERNET WINAPI InternetConnectW(HINTERNET hInternet, HINTERNET rc = NULL; DWORD res = ERROR_SUCCESS; - TRACE("(%p, %s, %i, %s, %s, %i, %x, %lx)\n", hInternet, debugstr_w(lpszServerName), - nServerPort, debugstr_w(lpszUserName), debugstr_w(lpszPassword), - dwService, dwFlags, dwContext); + TRACE("(%p, %s, %u, %s, %p, %u, %x, %lx)\n", hInternet, debugstr_w(lpszServerName), + nServerPort, debugstr_w(lpszUserName), lpszPassword, dwService, dwFlags, dwContext); if (!lpszServerName) {
participants (1)
-
Alexandre Julliard