summary refs log tree commit diff stats
path: root/src/common/ssl.c
diff options
context:
space:
mode:
authorBerke Viktor <bviktor@hexchat.org>2012-10-30 21:25:58 +0100
committerBerke Viktor <bviktor@hexchat.org>2012-10-30 21:25:58 +0100
commitcb0f6c8c91b564e541688b3f0f57d8456295dc1f (patch)
tree0ac1427e1d3a18ae152bd1d34f424c6db7759479 /src/common/ssl.c
parent284dbfbe3dc37e94b57e110b6ea23f847b9f6035 (diff)
Eliminate some more warnings
Diffstat (limited to 'src/common/ssl.c')
-rw-r--r--src/common/ssl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/ssl.c b/src/common/ssl.c
index 1ee42a08..830b3d83 100644
--- a/src/common/ssl.c
+++ b/src/common/ssl.c
@@ -206,7 +206,7 @@ _SSL_get_cert_info (struct cert_info *cert_info, SSL * ssl)
 struct chiper_info *
 _SSL_get_cipher_info (SSL * ssl)
 {
-	SSL_CIPHER *c;
+	const SSL_CIPHER *c;
 
 
 	c = SSL_get_current_cipher (ssl);