aboutsummaryrefslogtreecommitdiff
path: root/databases/mysql56-server/files
diff options
context:
space:
mode:
authorMahdi Mokhtari <mmokhi@FreeBSD.org>2019-08-05 23:21:26 +0000
committerMahdi Mokhtari <mmokhi@FreeBSD.org>2019-08-05 23:21:26 +0000
commitd79cf0c9d02b0cb2bcf41941ba69dfafe71ec535 (patch)
tree3c0131dcb68a1bfb52e0d03af48b387bf2cc5a00 /databases/mysql56-server/files
parentb7471abcb1e899421ce5e2575dd35f78e1483f7f (diff)
downloadports-d79cf0c9d02b0cb2bcf41941ba69dfafe71ec535.tar.gz
ports-d79cf0c9d02b0cb2bcf41941ba69dfafe71ec535.zip
Notes
Diffstat (limited to 'databases/mysql56-server/files')
-rw-r--r--databases/mysql56-server/files/patch-sql-common_client__authentication.cc17
1 files changed, 0 insertions, 17 deletions
diff --git a/databases/mysql56-server/files/patch-sql-common_client__authentication.cc b/databases/mysql56-server/files/patch-sql-common_client__authentication.cc
deleted file mode 100644
index fdbf5eb98562..000000000000
--- a/databases/mysql56-server/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");