secur32: Tell the user if ntlm_auth is not found or outdated.

This commit is contained in:
Kai Blin 2006-09-17 11:27:03 +02:00 committed by Alexandre Julliard
parent b897ad1774
commit 6ae83720dd
1 changed files with 5 additions and 0 deletions

View File

@ -1619,5 +1619,10 @@ void SECUR32_initNTLMSP(void)
SecureProvider *provider = SECUR32_addProvider(&ntlmTableA, &ntlmTableW, NULL);
SECUR32_addPackages(provider, 1L, &infoA, &infoW);
}
else
{
ERR("ntlm_auth was not found or is outdated. "
"Make sure that ntlm_auth >= 3.x is in your path.\n");
}
cleanup_helper(helper);
}