Commit 6b6ec593 authored by Vitaly Lipatov's avatar Vitaly Lipatov Committed by Vitaly Lipatov

msv1_0: disable annoying message about missed ntlm_auth

parent a761ddca
...@@ -117,7 +117,7 @@ static NTSTATUS NTAPI ntlm_LsaApInitializePackage( ULONG package_id, LSA_DISPATC ...@@ -117,7 +117,7 @@ static NTSTATUS NTAPI ntlm_LsaApInitializePackage( ULONG package_id, LSA_DISPATC
if (ntlm_check_version()) if (ntlm_check_version())
{ {
ERR( "no NTLM support, expect problems\n" ); TRACE( "no NTLM support, expect problems\n" );
return STATUS_UNSUCCESSFUL; return STATUS_UNSUCCESSFUL;
} }
...@@ -140,7 +140,7 @@ static NTSTATUS NTAPI ntlm_SpInitialize( ULONG_PTR package_id, SECPKG_PARAMETERS ...@@ -140,7 +140,7 @@ static NTSTATUS NTAPI ntlm_SpInitialize( ULONG_PTR package_id, SECPKG_PARAMETERS
if (ntlm_check_version()) if (ntlm_check_version())
{ {
ERR( "no NTLM support, expect problems\n" ); TRACE( "no NTLM support, expect problems\n" );
return STATUS_UNSUCCESSFUL; return STATUS_UNSUCCESSFUL;
} }
return STATUS_SUCCESS; return STATUS_SUCCESS;
......
...@@ -243,7 +243,8 @@ static NTSTATUS ntlm_check_version( void *args ) ...@@ -243,7 +243,8 @@ static NTSTATUS ntlm_check_version( void *args )
} }
} }
if (status) ERR_(winediag)( "ntlm_auth was not found or is outdated. " /* disable ntlm support (use secure Kerberos!) */
if (status) TRACE_(winediag)( "ntlm_auth was not found or is outdated. "
"Make sure that ntlm_auth >= %d.%d.%d is in your path. " "Make sure that ntlm_auth >= %d.%d.%d is in your path. "
"Usually, you can find it in the winbind package of your distribution.\n", "Usually, you can find it in the winbind package of your distribution.\n",
NTLM_AUTH_MAJOR_VERSION, NTLM_AUTH_MINOR_VERSION, NTLM_AUTH_MICRO_VERSION ); NTLM_AUTH_MAJOR_VERSION, NTLM_AUTH_MINOR_VERSION, NTLM_AUTH_MICRO_VERSION );
......
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