From d79cf0c9d02b0cb2bcf41941ba69dfafe71ec535 Mon Sep 17 00:00:00 2001 From: Mahdi Mokhtari Date: Mon, 5 Aug 2019 23:21:26 +0000 Subject: databases/mysq56-{client, server}: Update to 5.6.45 This update includes security fixes which are mentioned on upstream critical patch report. Further info: https://www.oracle.com/technetwork/security-advisory/cpujul2019-5072835.html#AppendixMSQL PR: 239571 Reported by: serg@tmn.ru Sponsored by: Platform.sh --- .../files/patch-sql-common_client__authentication.cc | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 databases/mysql56-client/files/patch-sql-common_client__authentication.cc (limited to 'databases/mysql56-client/files') diff --git a/databases/mysql56-client/files/patch-sql-common_client__authentication.cc b/databases/mysql56-client/files/patch-sql-common_client__authentication.cc deleted file mode 100644 index fdbf5eb98562..000000000000 --- a/databases/mysql56-client/files/patch-sql-common_client__authentication.cc +++ /dev/null @@ -1,17 +0,0 @@ -sql-common/client_authentication.cc:87:56: error: comparison between pointer and integer ('char *' and 'int') - mysql->options.extension->server_public_key_path != '\0') - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ^ ~~~~ - -Part of https://github.com/mysql/mysql-server/commit/db1bde79b1b4 - ---- sql-common/client_authentication.cc.orig 2017-09-13 15:49:17 UTC -+++ sql-common/client_authentication.cc -@@ -84,7 +84,7 @@ RSA *rsa_init(MYSQL *mysql) - - if (mysql->options.extension != NULL && - mysql->options.extension->server_public_key_path != NULL && -- mysql->options.extension->server_public_key_path != '\0') -+ mysql->options.extension->server_public_key_path[0] != '\0') - { - pub_key_file= fopen(mysql->options.extension->server_public_key_path, - "r"); -- cgit v1.2.3