summaryrefslogtreecommitdiff
path: root/mail/cyrus-imapd25/files/patch-imtest__imtest.c
blob: 2c80ed67bc66afd70f3815cc6f3109e8ae944648 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
--- imtest/imtest.c.orig	2015-11-30 06:30:33 UTC
+++ imtest/imtest.c
@@ -503,7 +503,9 @@ static int tls_init_clientengine(int ver
     off |= SSL_OP_ALL;            /* Work around all known bugs */
     off |= SSL_OP_NO_SSLv2;       /* Disable insecure SSLv2 */
     off |= SSL_OP_NO_SSLv3;       /* Disable insecure SSLv3 */
+#if (OPENSSL_VERSION_NUMBER >= 0x1000000fL)
     off |= SSL_OP_NO_COMPRESSION; /* Disable TLS compression */
+#endif // (OPENSSL_VERSION_NUMBER >= 0x1000000fL)
     SSL_CTX_set_options(tls_ctx, off);
     SSL_CTX_set_info_callback(tls_ctx, apps_ssl_info_callback);