Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
e239953e
Commit
e239953e
authored
Jun 22, 2006
by
Andrew Talbot
Committed by
Alexandre Julliard
Jun 23, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
secur32: Write-strings warnings fix.
parent
d69745ff
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
ntlm.c
dlls/secur32/ntlm.c
+4
-2
No files found.
dlls/secur32/ntlm.c
View file @
e239953e
...
...
@@ -122,6 +122,8 @@ static SECURITY_STATUS SEC_ENTRY ntlm_AcquireCredentialsHandleW(
{
static
const
char
username_arg
[]
=
"--username="
;
static
const
char
domain_arg
[]
=
"--domain="
;
static
char
ntlm_auth
[]
=
"ntlm_auth"
;
static
char
helper_protocol
[]
=
"--helper-protocol=ntlmssp-client-1"
;
int
unixcp_size
;
if
(
pAuthData
==
NULL
)
...
...
@@ -187,8 +189,8 @@ static SECURITY_STATUS SEC_ENTRY ntlm_AcquireCredentialsHandleW(
-
1
,
client_domain_arg
+
sizeof
(
domain_arg
)
-
1
,
unixcp_size
-
sizeof
(
domain
)
+
1
,
NULL
,
NULL
);
client_argv
[
0
]
=
"ntlm_auth"
;
client_argv
[
1
]
=
"--helper-protocol=ntlmssp-client-1"
;
client_argv
[
0
]
=
ntlm_auth
;
client_argv
[
1
]
=
helper_protocol
;
client_argv
[
2
]
=
client_user_arg
;
client_argv
[
3
]
=
client_domain_arg
;
client_argv
[
4
]
=
NULL
;
...
...
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