From: micah Date: Thu, 30 Aug 2007 04:31:01 +0000 (-0700) Subject: [svn] Backing out constification of SSL_METHOD *meth. X-Git-Tag: v1.13~558 X-Git-Url: http://sjero.net/git/?p=wget;a=commitdiff_plain;h=36f52a8be0ebb2c9c045ded9038e3b316a611c19 [svn] Backing out constification of SSL_METHOD *meth. --- 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. */