summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2014-12-17 09:49:07 +0000
committerPacho Ramos <pacho@gentoo.org>2014-12-17 09:49:07 +0000
commit13661d397d75c789d5700c869a69767a74ee2f32 (patch)
treee3547b4d5b68d0568266c0ae06ac13c96da5d3c0 /games-puzzle
parentremove old (diff)
downloadgentoo-2-13661d397d75c789d5700c869a69767a74ee2f32.tar.gz
gentoo-2-13661d397d75c789d5700c869a69767a74ee2f32.tar.bz2
gentoo-2-13661d397d75c789d5700c869a69767a74ee2f32.zip
I forgot to commit the patch, thanks to wschlich for reporting
(Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
Diffstat (limited to 'games-puzzle')
-rw-r--r--games-puzzle/gtetrinet/ChangeLog6
-rw-r--r--games-puzzle/gtetrinet/files/gtetrinet-0.7.11-format-security.patch16
2 files changed, 21 insertions, 1 deletions
diff --git a/games-puzzle/gtetrinet/ChangeLog b/games-puzzle/gtetrinet/ChangeLog
index 1fd754b30581..69e9ec27c0c1 100644
--- a/games-puzzle/gtetrinet/ChangeLog
+++ b/games-puzzle/gtetrinet/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for games-puzzle/gtetrinet
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-puzzle/gtetrinet/ChangeLog,v 1.29 2014/12/05 11:54:10 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-puzzle/gtetrinet/ChangeLog,v 1.30 2014/12/17 09:49:07 pacho Exp $
+
+ 17 Dec 2014; Pacho Ramos <pacho@gentoo.org>
+ +files/gtetrinet-0.7.11-format-security.patch:
+ I forgot to commit the patch, thanks to wschlich for reporting
*gtetrinet-0.7.11-r3 (05 Dec 2014)
diff --git a/games-puzzle/gtetrinet/files/gtetrinet-0.7.11-format-security.patch b/games-puzzle/gtetrinet/files/gtetrinet-0.7.11-format-security.patch
new file mode 100644
index 000000000000..59389a18f7c5
--- /dev/null
+++ b/games-puzzle/gtetrinet/files/gtetrinet-0.7.11-format-security.patch
@@ -0,0 +1,16 @@
+Author: Jordi Mallach <jordi@debian.org>
+Description: Fix build when using -Werror=format-security, now default
+ on Debian.
+Status: committed-upstream
+
+--- gtetrinet-0.7.11.orig/src/tetrinet.c
++++ gtetrinet-0.7.11/src/tetrinet.c
+@@ -232,7 +232,7 @@
+ dialog = gtk_message_dialog_new (NULL, GTK_DIALOG_MODAL,
+ GTK_MESSAGE_ERROR,
+ GTK_BUTTONS_OK,
+- buf);
++ "%s", buf);
+ gtk_dialog_run (GTK_DIALOG(dialog));
+ gtk_widget_destroy (dialog);
+ g_free (data_utf8);