secur32: Update ntlm_auth version detection to detect new samba4 version numbers.

Samba4 changed the versioning from 3.9.X to 4.0.0tpX-preY.
This commit is contained in:
Kai Blin 2006-03-16 12:45:17 +01:00 committed by Alexandre Julliard
parent b40a406dc3
commit e6351700bc
1 changed files with 2 additions and 2 deletions

View File

@ -290,11 +290,11 @@ void check_version(PNegoHelper helper)
temp[len] = 0;
TRACE("Exact version is %s\n", debugstr_a(temp));
if(strncmp(temp+8, "3.9", 3) == 0)
if(strncmp(temp+8, "4", 1) == 0)
{
helper->version = 4;
}
else if(strncmp(temp+8, "3.0", 3) == 0)
else if(strncmp(temp+8, "3", 1) == 0)
{
helper->version = 3;
}