[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:
Peter Hater 2017-06-05 19:27:50 +00:00
parent 3a11250596
commit d70eb21b6b

View file

@ -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;
}
}