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
0cc9c52f
Commit
0cc9c52f
authored
Oct 08, 2010
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wininet: Load X509_STORE_CTX_get_ex_data from libcrypto not libssl.
parent
61cd0648
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
netconnection.c
dlls/wininet/netconnection.c
+2
-2
No files found.
dlls/wininet/netconnection.c
View file @
0cc9c52f
...
...
@@ -152,7 +152,6 @@ MAKE_FUNCPTR(SSL_CTX_set_default_verify_paths);
MAKE_FUNCPTR
(
SSL_CTX_set_verify
);
MAKE_FUNCPTR
(
SSL_get_current_cipher
);
MAKE_FUNCPTR
(
SSL_CIPHER_get_bits
);
MAKE_FUNCPTR
(
X509_STORE_CTX_get_ex_data
);
/* OpenSSL's libcrypto functions that we use */
MAKE_FUNCPTR
(
BIO_new_fp
);
...
...
@@ -162,6 +161,7 @@ MAKE_FUNCPTR(CRYPTO_set_locking_callback);
MAKE_FUNCPTR
(
ERR_free_strings
);
MAKE_FUNCPTR
(
ERR_get_error
);
MAKE_FUNCPTR
(
ERR_error_string
);
MAKE_FUNCPTR
(
X509_STORE_CTX_get_ex_data
);
MAKE_FUNCPTR
(
i2d_X509
);
MAKE_FUNCPTR
(
sk_num
);
MAKE_FUNCPTR
(
sk_value
);
...
...
@@ -431,7 +431,6 @@ DWORD NETCON_init(WININET_NETCONNECTION *connection, BOOL useSSL)
DYNSSL
(
SSL_CTX_set_verify
);
DYNSSL
(
SSL_get_current_cipher
);
DYNSSL
(
SSL_CIPHER_get_bits
);
DYNSSL
(
X509_STORE_CTX_get_ex_data
);
#undef DYNSSL
#define DYNCRYPTO(x) \
...
...
@@ -449,6 +448,7 @@ DWORD NETCON_init(WININET_NETCONNECTION *connection, BOOL useSSL)
DYNCRYPTO
(
ERR_free_strings
);
DYNCRYPTO
(
ERR_get_error
);
DYNCRYPTO
(
ERR_error_string
);
DYNCRYPTO
(
X509_STORE_CTX_get_ex_data
);
DYNCRYPTO
(
i2d_X509
);
DYNCRYPTO
(
sk_num
);
DYNCRYPTO
(
sk_value
);
...
...
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