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
62e77128
Commit
62e77128
authored
Nov 15, 2012
by
Austin English
Committed by
Alexandre Julliard
Nov 16, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
secur32: Get rid of deprecated types.
parent
b52118d5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
schannel_gnutls.c
dlls/secur32/schannel_gnutls.c
+2
-2
No files found.
dlls/secur32/schannel_gnutls.c
View file @
62e77128
...
...
@@ -129,7 +129,7 @@ BOOL schan_imp_create_session(schan_imp_session *session, BOOL is_server,
}
err
=
pgnutls_credentials_set
(
*
s
,
GNUTLS_CRD_CERTIFICATE
,
(
gnutls_certificate_credentials
)
cred
);
(
gnutls_certificate_credentials
_t
)
cred
);
if
(
err
!=
GNUTLS_E_SUCCESS
)
{
pgnutls_perror
(
err
);
...
...
@@ -409,7 +409,7 @@ BOOL schan_imp_allocate_certificate_credentials(schan_imp_certificate_credential
void
schan_imp_free_certificate_credentials
(
schan_imp_certificate_credentials
c
)
{
pgnutls_certificate_free_credentials
((
gnutls_certificate_credentials
)
c
);
pgnutls_certificate_free_credentials
((
gnutls_certificate_credentials
_t
)
c
);
}
static
void
schan_gnutls_log
(
int
level
,
const
char
*
msg
)
...
...
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