Fixes some compiler warnings: imap-send.c: In function ‘ssl_socket_connect’: warning: assignment discards qualifiers from pointer target type ==================================================== OpenSSL Changes between 0.9.8 and 1.0: *) Let the TLSv1_method() etc. functions return a 'const' SSL_METHOD pointer and make the SSL_METHOD parameter in SSL_CTX_new, SSL_CTX_set_ssl_version and SSL_set_ssl_method 'const'. Signed-off-by: Vietor Liu <vietor@xxxxxxxx> --- imap-send.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/imap-send.c b/imap-send.c index 3847fd1..298aa80 100644 --- a/imap-send.c +++ b/imap-send.c @@ -281,9 +281,9 @@ static int ssl_socket_connect(struct imap_socket *sock, int use_tls_only, int ve SSL_load_error_strings(); if (use_tls_only) - meth = TLSv1_method(); + meth = (SSL_METHOD *)TLSv1_method(); else - meth = SSLv23_method(); + meth = (SSL_METHOD *)SSLv23_method(); if (!meth) { ssl_socket_perror("SSLv23_method"); -- 1.6.5.2 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html