Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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
wine
wine-winehq
Commits
0dd54eb0
Commit
0dd54eb0
authored
Oct 26, 2011
by
Henri Verbeet
Committed by
Alexandre Julliard
Oct 27, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
secur32: Print the ntlm_auth diagnostic message to the winediag channel.
parent
2f74d505
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
ntlm.c
dlls/secur32/ntlm.c
+8
-8
No files found.
dlls/secur32/ntlm.c
View file @
0dd54eb0
...
@@ -34,6 +34,7 @@
...
@@ -34,6 +34,7 @@
#include "wine/debug.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
ntlm
);
WINE_DEFAULT_DEBUG_CHANNEL
(
ntlm
);
WINE_DECLARE_DEBUG_CHANNEL
(
winediag
);
#define NTLM_MAX_BUF 1904
#define NTLM_MAX_BUF 1904
#define MIN_NTLM_AUTH_MAJOR_VERSION 3
#define MIN_NTLM_AUTH_MAJOR_VERSION 3
...
@@ -2051,14 +2052,13 @@ void SECUR32_initNTLMSP(void)
...
@@ -2051,14 +2052,13 @@ void SECUR32_initNTLMSP(void)
}
}
else
else
{
{
ERR
(
"%s was not found or is outdated. "
ERR_
(
winediag
)(
"%s was not found or is outdated. "
"Make sure that ntlm_auth >= %d.%d.%d is in your path.
\n
"
,
"Make sure that ntlm_auth >= %d.%d.%d is in your path. "
ntlm_auth
,
"Usually, you can find it in the winbind package of your distribution.
\n
"
,
MIN_NTLM_AUTH_MAJOR_VERSION
,
ntlm_auth
,
MIN_NTLM_AUTH_MINOR_VERSION
,
MIN_NTLM_AUTH_MAJOR_VERSION
,
MIN_NTLM_AUTH_MICRO_VERSION
);
MIN_NTLM_AUTH_MINOR_VERSION
,
ERR
(
"Usually, you can find it in the winbind package of your "
MIN_NTLM_AUTH_MICRO_VERSION
);
"distribution.
\n
"
);
}
}
cleanup_helper
(
helper
);
cleanup_helper
(
helper
);
...
...
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