changeset 12882:dc0d02efe64b

Compiler warning fix for newer OpenSSL library.
author Timo Sirainen <tss@iki.fi>
date Mon, 04 Apr 2011 15:08:50 +0300
parents b3392b09623a
children 0dec197d1bb7
files src/lib-ssl-iostream/iostream-openssl.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/lib-ssl-iostream/iostream-openssl.c	Mon Apr 04 14:12:01 2011 +0300
+++ b/src/lib-ssl-iostream/iostream-openssl.c	Mon Apr 04 15:08:50 2011 +0300
@@ -453,7 +453,7 @@
 
 const char *ssl_iostream_get_security_string(struct ssl_iostream *ssl_io)
 {
-	SSL_CIPHER *cipher;
+	const SSL_CIPHER *cipher;
 #ifdef HAVE_SSL_COMPRESSION
 	const COMP_METHOD *comp;
 #endif