Patrik Stridvall : secur32: Use constants instead of hardcoded values.

Alexandre Julliard julliard at wine.codeweavers.com
Sun Dec 24 09:38:03 CST 2006


Module: wine
Branch: master
Commit: f46da1f985753fbbfcb443c77c3a86c6cd9a4034
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=f46da1f985753fbbfcb443c77c3a86c6cd9a4034

Author: Patrik Stridvall <patrik at stridvall.se>
Date:   Sat Dec 23 18:56:37 2006 +0100

secur32: Use constants instead of hardcoded values.

---

 dlls/secur32/ntlm.c |    7 +++++--
 1 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/dlls/secur32/ntlm.c b/dlls/secur32/ntlm.c
index 853edd1..1c22342 100644
--- a/dlls/secur32/ntlm.c
+++ b/dlls/secur32/ntlm.c
@@ -1769,8 +1769,11 @@ void SECUR32_initNTLMSP(void)
     else
     {
         ERR("%s was not found or is outdated. "
-            "Make sure that ntlm_auth >= 3.0.24 is in your path.\n",
-            ntlm_auth);
+            "Make sure that ntlm_auth >= %d.%d.%d is in your path.\n",
+            ntlm_auth,
+	    MIN_NTLM_AUTH_MAJOR_VERSION,
+	    MIN_NTLM_AUTH_MINOR_VERSION,
+	    MIN_NTLM_AUTH_MICRO_VERSION);
     }
     cleanup_helper(helper);
 }




More information about the wine-cvs mailing list