diff options
author | Remi Collet <fedora@famillecollet.com> | 2013-04-19 18:28:33 +0200 |
---|---|---|
committer | Remi Collet <fedora@famillecollet.com> | 2013-04-19 18:28:33 +0200 |
commit | af0007ddd66e35ec32e41d61a7a94a42236605cc (patch) | |
tree | bce53101b860ad057818d981b869a8521a1de105 | |
parent | a1bc1e7e2a2a4bad51c709ed5d3c88c0702cbb28 (diff) |
MySQL: the patch (EL-5)
-rw-r--r-- | mysql-openssl.patch | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/mysql-openssl.patch b/mysql-openssl.patch new file mode 100644 index 0000000..bcdc1d2 --- /dev/null +++ b/mysql-openssl.patch @@ -0,0 +1,13 @@ +--- mysql-5.5.31/vio/viossl.c~ 2013-03-25 14:14:58.000000000 +0100 ++++ mysql-5.5.31/vio/viossl.c 2013-04-18 16:58:38.552557538 +0200 +@@ -172,8 +172,10 @@ + SSL_SESSION_set_timeout(SSL_get_session(ssl), timeout); + SSL_set_fd(ssl, vio->sd); + #ifndef HAVE_YASSL ++#ifdef SSL_OP_NO_COMPRESSION + SSL_set_options(ssl, SSL_OP_NO_COMPRESSION); + #endif ++#endif + + if ((r= connect_accept_func(ssl)) < 1) + { |