Commit f46da1f9 authored by Patrik Stridvall's avatar Patrik Stridvall Committed by Alexandre Julliard

secur32: Use constants instead of hardcoded values.

parent 0134db6e
......@@ -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);
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment