diff options
author | Patrick Griffis <tingping@tingping.se> | 2021-10-01 12:15:26 -0500 |
---|---|---|
committer | Patrick Griffis <tingping@tingping.se> | 2021-10-01 13:47:42 -0500 |
commit | 3f07670b34512c9242ae2c20984f38cb453ce51f (patch) | |
tree | a56c4701ad65b6b6d982ff04566e46c3f20a2970 /src/common/ssl.h | |
parent | 2985dde7f05aef73ac8f682f0ee9fa1666066be2 (diff) |
win32: Update to OpenSSL 1.1
Diffstat (limited to 'src/common/ssl.h')
-rw-r--r-- | src/common/ssl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/ssl.h b/src/common/ssl.h index e722f831..bea2f440 100644 --- a/src/common/ssl.h +++ b/src/common/ssl.h @@ -45,7 +45,7 @@ SSL_CTX *_SSL_context_init (void (*info_cb_func)); #define _SSL_context_free(a) SSL_CTX_free(a); SSL *_SSL_socket (SSL_CTX *ctx, int sd); -char *_SSL_set_verify (SSL_CTX *ctx, void *(verify_callback), char *cacert); +char *_SSL_set_verify (SSL_CTX *ctx, void *(verify_callback)); /* int SSL_connect(SSL *); int SSL_accept(SSL *); |