Module: wine Branch: master Commit: 6ae83720dd80088d175572ff28ef7298bdd2bc81 URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=6ae83720dd80088d175572ff...
Author: Kai Blin kai.blin@gmail.com Date: Sun Sep 17 11:27:03 2006 +0200
secur32: Tell the user if ntlm_auth is not found or outdated.
---
dlls/secur32/ntlm.c | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-)
diff --git a/dlls/secur32/ntlm.c b/dlls/secur32/ntlm.c index 930c41b..2783a35 100644 --- a/dlls/secur32/ntlm.c +++ b/dlls/secur32/ntlm.c @@ -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); }