From 36f52a8be0ebb2c9c045ded9038e3b316a611c19 Mon Sep 17 00:00:00 2001 From: micah Date: Wed, 29 Aug 2007 21:31:01 -0700 Subject: [PATCH] [svn] Backing out constification of SSL_METHOD *meth. --- src/ChangeLog | 5 +++++ src/openssl.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/src/ChangeLog b/src/ChangeLog index d8f2fa97..4c7de37c 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2007-08-29 Micah Cowan + + * openssl.c (ssl_init): Re un-const-ified the meth local + variable, to match current versions of openssl. + 2007-08-27 Gisle Vanem * mswindows.c (run_with_timeout): Ensure that the correct diff --git a/src/openssl.c b/src/openssl.c index 9a29ed65..71faa0c0 100644 --- a/src/openssl.c +++ b/src/openssl.c @@ -158,7 +158,7 @@ key_type_to_ssl_type (enum keyfile_type type) bool ssl_init () { - const SSL_METHOD *meth; + SSL_METHOD *meth; if (ssl_ctx) /* The SSL has already been initialized. */ -- 2.39.2