OpenSSL 1.0.0 const fix for SSL_get_current_cipher
authorPhil Pennock <pdp@exim.org>
Sun, 11 Jul 2010 07:19:56 +0000 (00:19 -0700)
committerPhil Pennock <pdp@spodhuis.org>
Sun, 5 Sep 2010 22:49:34 +0000 (18:49 -0400)
OpenSSL 1.0.0 changes SSL_get_current_cipher()'s return value to include
const.  It looks like a safe change for older OpenSSL, so treat it
appropriately and cast as needed.

src/src/tls-openssl.c

index 3ea55f23841e59b820ee3802e61837bd2ffbea60..b6a8dcb8c74e085ca4f17f0378665e43c1d79f1e 100644 (file)
@@ -438,7 +438,10 @@ static void
 construct_cipher_name(SSL *ssl)
 {
 static uschar cipherbuf[256];
-SSL_CIPHER *c;
+/* With OpenSSL 1.0.0a, this needs to be const but the documentation doesn't
+yet reflect that.  It should be a safe change anyway, even 0.9.8 versions have
+the accessor functions use const in the prototype. */
+const SSL_CIPHER *c;
 uschar *ver;
 int bits;
 
@@ -460,7 +463,7 @@ switch (ssl->session->ssl_version)
   ver = US"UNKNOWN";
   }
 
-c = SSL_get_current_cipher(ssl);
+c = (const SSL_CIPHER *) SSL_get_current_cipher(ssl);
 SSL_CIPHER_get_bits(c, &bits);
 
 string_format(cipherbuf, sizeof(cipherbuf), "%s:%s:%u", ver,