summaryrefslogtreecommitdiff
path: root/dev-db/mysql-udf-base64/files/mysql-udf-base64-signedness.patch
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2019-03-13 10:32:46 +0100
committerMichał Górny <mgorny@gentoo.org>2019-03-13 10:34:21 +0100
commita81fa4bf8505e3eaab4d5a18cf9388d0f04f3744 (patch)
treef0ea85ffb7943b2532f7dd43c30f08af997857bd /dev-db/mysql-udf-base64/files/mysql-udf-base64-signedness.patch
parentd475921f83c372f1f84b313da9106a506f982080 (diff)
downloadgentoo-a81fa4bf8505e3eaab4d5a18cf9388d0f04f3744.tar.gz
gentoo-a81fa4bf8505e3eaab4d5a18cf9388d0f04f3744.tar.bz2
gentoo-a81fa4bf8505e3eaab4d5a18cf9388d0f04f3744.zip
dev-db/mysql-udf-base64: Remove last-rited pkg
Closes: https://bugs.gentoo.org/677450 Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-db/mysql-udf-base64/files/mysql-udf-base64-signedness.patch')
-rw-r--r--dev-db/mysql-udf-base64/files/mysql-udf-base64-signedness.patch29
1 files changed, 0 insertions, 29 deletions
diff --git a/dev-db/mysql-udf-base64/files/mysql-udf-base64-signedness.patch b/dev-db/mysql-udf-base64/files/mysql-udf-base64-signedness.patch
deleted file mode 100644
index 5084a9dd0128..000000000000
--- a/dev-db/mysql-udf-base64/files/mysql-udf-base64-signedness.patch
+++ /dev/null
@@ -1,29 +0,0 @@
---- mysql-udf-base64.c.orig 2011-10-16 14:17:13.000000000 +0200
-+++ mysql-udf-base64.c 2011-10-16 14:18:41.000000000 +0200
-@@ -49,7 +49,7 @@
- #include <string.h>
- #include <mysql/mysql.h>
-
--static char base64_table[] =
-+static const char base64_table[] =
- { 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M',
- 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z',
- 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm',
-@@ -101,7 +101,7 @@
- unsigned long len;
-
- /* *is_null=0; */
-- current = args->args[0];
-+ current = (unsigned char*) args->args[0];
- len = args->lengths[0];
-
- if (len <= 0 || args->arg_type[0] != STRING_RESULT )
-@@ -211,7 +211,7 @@
- }
- }
-
-- current = args->args[0];
-+ current = (unsigned char*) args->args[0];
- len = args->lengths[0];
-
- if (len <= 0 || args->arg_type[0] != STRING_RESULT )