Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-fonts
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Aleksandr Isakov
wine-fonts
Commits
6b6ec593
Commit
6b6ec593
authored
Jun 25, 2021
by
Vitaly Lipatov
Committed by
Vitaly Lipatov
Jul 30, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msv1_0: disable annoying message about missed ntlm_auth
parent
a761ddca
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
3 deletions
+4
-3
main.c
dlls/msv1_0/main.c
+2
-2
unixlib.c
dlls/msv1_0/unixlib.c
+2
-1
No files found.
dlls/msv1_0/main.c
View file @
6b6ec593
...
...
@@ -117,7 +117,7 @@ static NTSTATUS NTAPI ntlm_LsaApInitializePackage( ULONG package_id, LSA_DISPATC
if
(
ntlm_check_version
())
{
ERR
(
"no NTLM support, expect problems
\n
"
);
TRACE
(
"no NTLM support, expect problems
\n
"
);
return
STATUS_UNSUCCESSFUL
;
}
...
...
@@ -140,7 +140,7 @@ static NTSTATUS NTAPI ntlm_SpInitialize( ULONG_PTR package_id, SECPKG_PARAMETERS
if
(
ntlm_check_version
())
{
ERR
(
"no NTLM support, expect problems
\n
"
);
TRACE
(
"no NTLM support, expect problems
\n
"
);
return
STATUS_UNSUCCESSFUL
;
}
return
STATUS_SUCCESS
;
...
...
dlls/msv1_0/unixlib.c
View file @
6b6ec593
...
...
@@ -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. "
"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
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment