From 8b727baec560bdd3eea8fe89b897f2adb9aa535f Mon Sep 17 00:00:00 2001 From: Holger Weiss Date: Mon, 21 Nov 2016 09:31:08 +0100 Subject: sslutils: Address compiler warning SSLv23_client_method() and friends return a pointer to a const-qualified SSL_METHOD. diff --git a/plugins/sslutils.c b/plugins/sslutils.c index b412ef3..e38947e 100644 --- a/plugins/sslutils.c +++ b/plugins/sslutils.c @@ -48,7 +48,7 @@ int np_net_ssl_init_with_hostname_and_version(int sd, char *host_name, int versi } int np_net_ssl_init_with_hostname_version_and_cert(int sd, char *host_name, int version, char *cert, char *privkey) { - SSL_METHOD *method = NULL; + const SSL_METHOD *method = NULL; long options = 0; switch (version) { -- cgit v0.10-9-g596f