mirror of
https://github.com/moparisthebest/wget
synced 2024-07-03 16:38:41 -04:00
Silent a compiler warning.
This commit is contained in:
parent
baed30f057
commit
547bcb0d3f
@ -1,3 +1,7 @@
|
|||||||
|
2011-08-26 Giuseppe Scrivano <gscrivano@gnu.org>
|
||||||
|
|
||||||
|
* openssl.c (ssl_init): Make `meth' const.
|
||||||
|
|
||||||
2011-08-25 Giuseppe Scrivano <gscrivano@gnu.org>
|
2011-08-25 Giuseppe Scrivano <gscrivano@gnu.org>
|
||||||
|
|
||||||
* utils.c [HAVE_UTIME && HAVE_UTIME_H]: Include <utime.h>.
|
* utils.c [HAVE_UTIME && HAVE_UTIME_H]: Include <utime.h>.
|
||||||
|
@ -161,7 +161,7 @@ key_type_to_ssl_type (enum keyfile_type type)
|
|||||||
bool
|
bool
|
||||||
ssl_init ()
|
ssl_init ()
|
||||||
{
|
{
|
||||||
SSL_METHOD *meth;
|
SSL_METHOD const *meth;
|
||||||
|
|
||||||
if (ssl_ctx)
|
if (ssl_ctx)
|
||||||
/* The SSL has already been initialized. */
|
/* The SSL has already been initialized. */
|
||||||
|
Loading…
Reference in New Issue
Block a user