1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2024-06-25 22:43:14 +00:00

Fix warning

This commit is contained in:
Carles Fernandez 2019-10-05 21:29:23 +02:00
parent 1e0c789c84
commit 73e6d6aa1f
No known key found for this signature in database
GPG Key ID: 4C583C52B0C3877D

View File

@ -250,7 +250,7 @@ int EXPORT supl_server_connect(supl_ctx_t *ctx, char *server)
SSLeay_add_ssl_algorithms();
// meth = TLSv1_client_method();
meth = SSLv23_client_method();
meth = (SSL_METHOD*)SSLv23_client_method();
SSL_load_error_strings();
ctx->ssl_ctx = SSL_CTX_new(meth);
if (!ctx->ssl_ctx)