From 0dbabcc44c141d0018a6eb6b6d3c78cc6e16491c Mon Sep 17 00:00:00 2001 From: Philipp Schafft Date: Wed, 24 Dec 2014 09:03:26 +0000 Subject: [PATCH] Fix: avoid assignment discards 'const' qualifier warning Untested. Please test. See #2063 --- src/connection.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/connection.c b/src/connection.c index 13f4385b..49a7ab30 100644 --- a/src/connection.c +++ b/src/connection.c @@ -191,7 +191,7 @@ static unsigned long _next_connection_id(void) #ifdef HAVE_OPENSSL static void get_ssl_certificate (ice_config_t *config) { - SSL_METHOD *method; + const SSL_METHOD *method; long ssl_opts; ssl_ok = 0;