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
24b43794
Commit
24b43794
authored
Dec 05, 2009
by
Huw Davies
Committed by
Alexandre Julliard
Dec 07, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winhttp: Load X509_STORE_CTX_get_ex_data from libcrypto not libssl.
parent
25ab6930
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
net.c
dlls/winhttp/net.c
+2
-2
No files found.
dlls/winhttp/net.c
View file @
24b43794
...
...
@@ -115,7 +115,6 @@ MAKE_FUNCPTR( SSL_get_verify_result );
MAKE_FUNCPTR
(
SSL_get_peer_certificate
);
MAKE_FUNCPTR
(
SSL_CTX_set_default_verify_paths
);
MAKE_FUNCPTR
(
SSL_CTX_set_verify
);
MAKE_FUNCPTR
(
X509_STORE_CTX_get_ex_data
);
MAKE_FUNCPTR
(
BIO_new_fp
);
MAKE_FUNCPTR
(
CRYPTO_num_locks
);
...
...
@@ -123,6 +122,7 @@ MAKE_FUNCPTR( CRYPTO_set_id_callback );
MAKE_FUNCPTR
(
CRYPTO_set_locking_callback
);
MAKE_FUNCPTR
(
ERR_get_error
);
MAKE_FUNCPTR
(
ERR_error_string
);
MAKE_FUNCPTR
(
X509_STORE_CTX_get_ex_data
);
MAKE_FUNCPTR
(
i2d_X509
);
#undef MAKE_FUNCPTR
...
...
@@ -423,7 +423,6 @@ BOOL netconn_init( netconn_t *conn, BOOL secure )
LOAD_FUNCPTR
(
SSL_get_peer_certificate
);
LOAD_FUNCPTR
(
SSL_CTX_set_default_verify_paths
);
LOAD_FUNCPTR
(
SSL_CTX_set_verify
);
LOAD_FUNCPTR
(
X509_STORE_CTX_get_ex_data
);
#undef LOAD_FUNCPTR
#define LOAD_FUNCPTR(x) \
...
...
@@ -440,6 +439,7 @@ BOOL netconn_init( netconn_t *conn, BOOL secure )
LOAD_FUNCPTR
(
CRYPTO_set_locking_callback
);
LOAD_FUNCPTR
(
ERR_get_error
);
LOAD_FUNCPTR
(
ERR_error_string
);
LOAD_FUNCPTR
(
X509_STORE_CTX_get_ex_data
);
LOAD_FUNCPTR
(
i2d_X509
);
#undef LOAD_FUNCPTR
...
...
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