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
b62bbe55
Commit
b62bbe55
authored
Jul 17, 2006
by
Andrew Talbot
Committed by
Alexandre Julliard
Jul 19, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
secur32: Write-strings warnings fix.
parent
a0f20875
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
7 deletions
+11
-7
ntlm.c
dlls/secur32/ntlm.c
+11
-7
No files found.
dlls/secur32/ntlm.c
View file @
b62bbe55
...
...
@@ -86,14 +86,16 @@ static SECURITY_STATUS SEC_ENTRY ntlm_AcquireCredentialsHandleW(
{
SECURITY_STATUS
ret
;
PNegoHelper
helper
=
NULL
;
static
CHAR
ntlm_auth
[]
=
"ntlm_auth"
,
helper_protocol
[]
=
"--helper-protocol=squid-2.5-ntlmssp"
;
SEC_CHAR
*
client_user_arg
=
NULL
;
SEC_CHAR
*
client_domain_arg
=
NULL
;
SEC_WCHAR
*
username
=
NULL
,
*
domain
=
NULL
;
SEC_CHAR
*
client_argv
[
5
];
SEC_CHAR
*
server_argv
[]
=
{
"ntlm_auth"
,
"--helper-protocol=squid-2.5-ntlmssp"
,
SEC_CHAR
*
server_argv
[]
=
{
ntlm_auth
,
helper_protocol
,
NULL
};
TRACE
(
"(%s, %s, 0x%08lx, %p, %p, %p, %p, %p, %p)
\n
"
,
...
...
@@ -1216,13 +1218,15 @@ static const SecPkgInfoA infoA = {
};
void
SECUR32_initNTLMSP
(
void
)
{
{
SECURITY_STATUS
ret
;
PNegoHelper
helper
;
static
CHAR
ntlm_auth
[]
=
"ntlm_auth"
,
version
[]
=
"--version"
;
SEC_CHAR
*
args
[]
=
{
"ntlm_auth"
,
"--version"
,
ntlm_auth
,
version
,
NULL
};
if
((
ret
=
fork_helper
(
&
helper
,
"ntlm_auth"
,
args
))
!=
SEC_E_OK
)
...
...
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