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
e413b8a5
Commit
e413b8a5
authored
Mar 27, 2013
by
Jacek Caban
Committed by
Alexandre Julliard
Mar 27, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
secur32: Added SECPKG_ATTR_SUPPORTED_PROTOCOLS implementation.
parent
0f2e0365
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
schannel.c
dlls/secur32/schannel.c
+7
-7
No files found.
dlls/secur32/schannel.c
View file @
e413b8a5
...
...
@@ -281,14 +281,14 @@ static SECURITY_STATUS schan_QueryCredentialsAttributes(
ret
=
SEC_E_INTERNAL_ERROR
;
break
;
case
SECPKG_ATTR_SUPPORTED_PROTOCOLS
:
if
(
pBuffer
)
{
/* FIXME: get from OpenSSL? */
FIXME
(
"SECPKG_ATTR_SUPPORTED_PROTOCOLS: stub
\n
"
);
ret
=
SEC_E_UNSUPPORTED_FUNCTION
;
}
else
if
(
pBuffer
)
{
/* Regardless of MSDN documentation, tests show that this attribute takes into account
* what protocols are enabled for given credential. */
((
SecPkgCred_SupportedProtocols
*
)
pBuffer
)
->
grbitProtocol
=
cred
->
enabled_protocols
;
ret
=
SEC_E_OK
;
}
else
{
ret
=
SEC_E_INTERNAL_ERROR
;
}
break
;
default:
ret
=
SEC_E_UNSUPPORTED_FUNCTION
;
...
...
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