r30595 - in /desktop/unstable/at-spi/debian: changelog patches/02-format-security.patch patches/series

biebl at users.alioth.debian.org biebl at users.alioth.debian.org
Sun Oct 16 08:46:36 UTC 2011


Author: biebl
Date: Sun Oct 16 08:46:36 2011
New Revision: 30595

URL: http://svn.debian.org/wsvn/pkg-gnome/?sc=1&rev=30595
Log:
* debian/patches/02-format-security.patch:
  - Fix build failure with [-Werror=format-security]. Closes: #643355

Added:
    desktop/unstable/at-spi/debian/patches/02-format-security.patch
Modified:
    desktop/unstable/at-spi/debian/changelog
    desktop/unstable/at-spi/debian/patches/series

Modified: desktop/unstable/at-spi/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/at-spi/debian/changelog?rev=30595&op=diff
==============================================================================
--- desktop/unstable/at-spi/debian/changelog [utf-8] (original)
+++ desktop/unstable/at-spi/debian/changelog [utf-8] Sun Oct 16 08:46:36 2011
@@ -8,6 +8,8 @@
   * Bump debhelper compatibility level to 8.
     - Update Build-Depends on debhelper.
     - Strip debian/tmp/ from .install files.
+  * debian/patches/02-format-security.patch:
+    - Fix build failure with [-Werror=format-security]. Closes: #643355
 
  -- Michael Biebl <biebl at debian.org>  Sun, 16 Oct 2011 10:26:20 +0200
 

Added: desktop/unstable/at-spi/debian/patches/02-format-security.patch
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/at-spi/debian/patches/02-format-security.patch?rev=30595&op=file
==============================================================================
--- desktop/unstable/at-spi/debian/patches/02-format-security.patch (added)
+++ desktop/unstable/at-spi/debian/patches/02-format-security.patch [utf-8] Sun Oct 16 08:46:36 2011
@@ -1,0 +1,16 @@
+Description: Fix build failure with [-Werror=format-security]
+Author: Michael Biebl <biebl at debian.org>
+Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=643355
+Index: at-spi-1.32.0/test/simple-at.c
+===================================================================
+--- at-spi-1.32.0.orig/test/simple-at.c	2010-09-09 04:51:14.000000000 +0200
++++ at-spi-1.32.0/test/simple-at.c	2011-10-16 10:41:32.565040623 +0200
+@@ -605,7 +605,7 @@
+ static void
+ _festival_write (const gchar *command_string, int fd)
+ {
+-  fprintf(stderr, command_string);
++  fprintf(stderr, "%s", command_string);
+   if (fd < 0) {
+     perror("socket");
+     return;

Modified: desktop/unstable/at-spi/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/at-spi/debian/patches/series?rev=30595&op=diff
==============================================================================
--- desktop/unstable/at-spi/debian/patches/series [utf-8] (original)
+++ desktop/unstable/at-spi/debian/patches/series [utf-8] Sun Oct 16 08:46:36 2011
@@ -1,1 +1,2 @@
 01_type_init.patch
+02-format-security.patch




More information about the pkg-gnome-commits mailing list