secur32: Use constants instead of hardcoded values.

This commit is contained in:
Patrik Stridvall 2006-12-23 18:56:37 +01:00 committed by Alexandre Julliard
parent 0134db6e9b
commit f46da1f985
1 changed files with 5 additions and 2 deletions

View File

@ -1769,8 +1769,11 @@ void SECUR32_initNTLMSP(void)
else else
{ {
ERR("%s was not found or is outdated. " ERR("%s was not found or is outdated. "
"Make sure that ntlm_auth >= 3.0.24 is in your path.\n", "Make sure that ntlm_auth >= %d.%d.%d is in your path.\n",
ntlm_auth); ntlm_auth,
MIN_NTLM_AUTH_MAJOR_VERSION,
MIN_NTLM_AUTH_MINOR_VERSION,
MIN_NTLM_AUTH_MICRO_VERSION);
} }
cleanup_helper(helper); cleanup_helper(helper);
} }