Module: wine Branch: master Commit: ab9ba9968fe93872f2522a3a65bf7cde563814ee URL: https://source.winehq.org/git/wine.git/?a=commit;h=ab9ba9968fe93872f2522a3a6...
Author: Francois Gouget fgouget@free.fr Date: Wed Aug 25 15:36:08 2021 +0200
secur32/tests: Fix an ASCII / ANSI mixup in an ntlm comment.
Signed-off-by: Francois Gouget fgouget@free.fr Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/secur32/tests/ntlm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/secur32/tests/ntlm.c b/dlls/secur32/tests/ntlm.c index 930a49e451b..5ed650ffc2d 100644 --- a/dlls/secur32/tests/ntlm.c +++ b/dlls/secur32/tests/ntlm.c @@ -1384,7 +1384,7 @@ static void testAcquireCredentialsHandleW(void) getSecError(ret)); pFreeCredentialsHandle(&cred);
- /* Test using the ASCII structure. */ + /* Test using the ANSI structure. */ idA.User = (unsigned char*) test_user; idA.UserLength = strlen(test_user); idA.Domain = (unsigned char *) workgroup;