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
4d7c36dd
Commit
4d7c36dd
authored
Jun 23, 2023
by
Hans Leidekker
Committed by
Alexandre Julliard
Jul 06, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
secur32: Fix a couple of return values.
parent
eba7092f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
schannel.c
dlls/secur32/schannel.c
+3
-3
No files found.
dlls/secur32/schannel.c
View file @
4d7c36dd
...
...
@@ -312,7 +312,7 @@ static SECURITY_STATUS SEC_ENTRY schan_QueryCredentialsAttributesA(
{
case
SECPKG_CRED_ATTR_NAMES
:
FIXME
(
"SECPKG_CRED_ATTR_NAMES: stub
\n
"
);
ret
=
SEC_E_
UNSUPPORTED_FUNCTION
;
ret
=
SEC_E_
NO_CREDENTIALS
;
break
;
default:
ret
=
schan_QueryCredentialsAttributes
(
phCredential
,
ulAttribute
,
...
...
@@ -394,7 +394,7 @@ static SECURITY_STATUS get_cert(const void *credentials, CERT_CONTEXT const **ce
default:
FIXME
(
"unhandled version %lu
\n
"
,
cred
->
dwVersion
);
return
SEC_E_
INTERNAL_ERROR
;
return
SEC_E_
UNKNOWN_CREDENTIALS
;
}
if
(
!
cert_count
)
status
=
SEC_E_NO_CREDENTIALS
;
...
...
@@ -570,7 +570,7 @@ static SECURITY_STATUS acquire_credentials_handle(ULONG fCredentialUse,
status
=
SEC_E_OK
;
}
else
if
(
fCredentialUse
&
SECPKG_CRED_INBOUND
)
else
if
(
!
fCredentialUse
||
(
fCredentialUse
&
SECPKG_CRED_INBOUND
)
)
{
return
SEC_E_NO_CREDENTIALS
;
}
...
...
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