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
3d47fce3
Commit
3d47fce3
authored
Mar 13, 2011
by
Ken Thomases
Committed by
Alexandre Julliard
Mar 14, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
secur32: Set push & pull functions in schan_imp_create_session.
parent
c86dafe5
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 @
3d47fce3
...
...
@@ -132,6 +132,9 @@ static BOOL schan_imp_create_session(gnutls_session_t *s, BOOL is_server)
return
FALSE
;
}
pgnutls_transport_set_pull_function
(
*
s
,
schan_pull_adapter
);
pgnutls_transport_set_push_function
(
*
s
,
schan_push_adapter
);
return
TRUE
;
}
...
...
@@ -1058,9 +1061,6 @@ static SECURITY_STATUS SEC_ENTRY schan_InitializeSecurityContextW(
HeapFree
(
GetProcessHeap
(),
0
,
ctx
);
}
pgnutls_transport_set_pull_function
(
ctx
->
session
,
schan_pull_adapter
);
pgnutls_transport_set_push_function
(
ctx
->
session
,
schan_push_adapter
);
phNewContext
->
dwLower
=
handle
;
phNewContext
->
dwUpper
=
0
;
}
...
...
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