mirror of
https://github.com/reactos/reactos.git
synced 2025-05-06 10:28:45 +00:00
[WINETESTS] Avoid canceling the test when Samba is not installed and NTLM authentication is tested
svn path=/trunk/; revision=74927
This commit is contained in:
parent
3a11250596
commit
d70eb21b6b
1 changed files with 5 additions and 0 deletions
|
@ -2188,7 +2188,12 @@ static DWORD CALLBACK server_thread(LPVOID param)
|
|||
else
|
||||
{
|
||||
send(c, largeauth, sizeof largeauth - 1, 0);
|
||||
#ifdef __REACTOS__
|
||||
memset(buffer, 'A', sizeof(buffer));
|
||||
for (i = 0; i < (10240 / sizeof(buffer)); i++) send(c, buffer, sizeof(buffer), 0);
|
||||
#else
|
||||
for (i = 0; i < 10240; i++) send(c, "A", 1, 0);
|
||||
#endif
|
||||
continue;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue