[svn] Backing out constification of SSL_METHOD *meth.

This commit is contained in:
micah 2007-08-29 21:31:01 -07:00
parent 6e3d978b8b
commit 36f52a8be0
2 changed files with 6 additions and 1 deletions

View 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

View 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. */