summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKent Fredric <kentnl@gentoo.org>2017-02-05 06:49:32 +1300
committerKent Fredric <kentnl@gentoo.org>2017-02-05 06:56:46 +1300
commit90ebb21b93a4900fd492331785ad45b52c910a00 (patch)
treee617c69e08124d76d43d2651d8f77048de0c61d0 /dev-perl/DBD-mysql/files
parentdev-perl/ZMQ-LibZMQ2: Remove old (diff)
downloadgentoo-90ebb21b93a4900fd492331785ad45b52c910a00.tar.gz
gentoo-90ebb21b93a4900fd492331785ad45b52c910a00.tar.bz2
gentoo-90ebb21b93a4900fd492331785ad45b52c910a00.zip
dev-perl/DBD-mysql: Restore old versions (masked) for bug #604678
This reverts parts of "Security cleanup re bug #601144" commit 19eeb140a84c8bb903b808bf7ea344a3c633857a Bug: https://bugs.gentoo.org/604678 Bug: https://bugs.gentoo.org/601144 Package-Manager: Portage-2.3.3, Repoman-2.3.1
Diffstat (limited to 'dev-perl/DBD-mysql/files')
-rw-r--r--dev-perl/DBD-mysql/files/DBD-mysql-print_embedded_options.patch20
1 files changed, 20 insertions, 0 deletions
diff --git a/dev-perl/DBD-mysql/files/DBD-mysql-print_embedded_options.patch b/dev-perl/DBD-mysql/files/DBD-mysql-print_embedded_options.patch
new file mode 100644
index 000000000000..d205b43f33ec
--- /dev/null
+++ b/dev-perl/DBD-mysql/files/DBD-mysql-print_embedded_options.patch
@@ -0,0 +1,20 @@
+diff -ubBr old/dbdimp.c new/dbdimp.c
+--- old/dbdimp.c 2015-09-12 17:52:41.328543844 -0400
++++ new/dbdimp.c 2015-09-12 23:21:52.848371578 -0400
+@@ -443,14 +443,14 @@
+ Print out embbedded option settings
+
+ */
+-int print_embedded_options(char ** options_list, int options_count)
++int print_embedded_options(PerlIOl ** Log, char ** options_list, int options_count)
+ {
+ int i;
+
+ for (i=0; i<options_count; i++)
+ {
+ if (options_list[i])
+- PerlIO_printf(DBILOGFP,
++ PerlIO_printf(Log,
+ "Embedded server, parameter[%d]=%s\n",
+ i, options_list[i]);
+ }