]> sjero.net Git - wget/commitdiff
[svn] Backing out constification of SSL_METHOD *meth.
authormicah <devnull@localhost>
Thu, 30 Aug 2007 04:31:01 +0000 (21:31 -0700)
committermicah <devnull@localhost>
Thu, 30 Aug 2007 04:31:01 +0000 (21:31 -0700)
src/ChangeLog
src/openssl.c

index d8f2fa97d148ca4626548c7763031f59559b9e55..4c7de37ce89615b1425ea914c0c71d15ab211288 100644 (file)
@@ -1,3 +1,8 @@
+2007-08-29  Micah Cowan  <micah@cowan.name>
+
+       * openssl.c (ssl_init): Re un-const-ified the meth local
+       variable, to match current versions of openssl.
+
 2007-08-27  Gisle Vanem         <giva@bgnett.no>
 
        * mswindows.c (run_with_timeout): Ensure that the correct
index 9a29ed650b57988b8d8af26066ec91b74f5da9e1..71faa0c0b26cda27f61f2335ef56da61b2806a66 100644 (file)
@@ -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. */