r31030 - in /packages/unstable/libproxy/debian: changelog patches/03_format-security.patch patches/series

biebl at users.alioth.debian.org biebl at users.alioth.debian.org
Mon Oct 24 23:42:34 UTC 2011


Author: biebl
Date: Mon Oct 24 23:42:34 2011
New Revision: 31030

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

Added:
    packages/unstable/libproxy/debian/patches/03_format-security.patch
Modified:
    packages/unstable/libproxy/debian/changelog
    packages/unstable/libproxy/debian/patches/series

Modified: packages/unstable/libproxy/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-gnome/packages/unstable/libproxy/debian/changelog?rev=31030&op=diff
==============================================================================
--- packages/unstable/libproxy/debian/changelog [utf-8] (original)
+++ packages/unstable/libproxy/debian/changelog [utf-8] Mon Oct 24 23:42:34 2011
@@ -1,3 +1,10 @@
+libproxy (0.3.1-4) UNRELEASED; urgency=low
+
+  * debian/patches/03_format-security.patch:
+    - Fix build failure with [-Werror=format-security]. Closes: #643433
+
+ -- Michael Biebl <biebl at debian.org>  Tue, 25 Oct 2011 01:41:45 +0200
+
 libproxy (0.3.1-3) unstable; urgency=low
 
   * Use linux-any wildcard. Closes: #634464.

Added: packages/unstable/libproxy/debian/patches/03_format-security.patch
URL: http://svn.debian.org/wsvn/pkg-gnome/packages/unstable/libproxy/debian/patches/03_format-security.patch?rev=31030&op=file
==============================================================================
--- packages/unstable/libproxy/debian/patches/03_format-security.patch (added)
+++ packages/unstable/libproxy/debian/patches/03_format-security.patch [utf-8] Mon Oct 24 23:42:34 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=643433
+Index: libproxy-0.3.1/src/bin/proxy.c
+===================================================================
+--- libproxy-0.3.1.orig/src/bin/proxy.c	2009-09-29 21:52:50.000000000 +0200
++++ libproxy-0.3.1/src/bin/proxy.c	2011-10-25 01:38:38.564562709 +0200
+@@ -89,7 +89,7 @@
+ {
+ 	for (int j = 0; proxies[j] ; j++)
+ 	{
+-		printf(proxies[j]);
++		printf("%s", proxies[j]);
+ 		if (proxies[j+1])
+ 			printf(" ");
+ 		else

Modified: packages/unstable/libproxy/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-gnome/packages/unstable/libproxy/debian/patches/series?rev=31030&op=diff
==============================================================================
--- packages/unstable/libproxy/debian/patches/series [utf-8] (original)
+++ packages/unstable/libproxy/debian/patches/series [utf-8] Mon Oct 24 23:42:34 2011
@@ -1,2 +1,3 @@
 01_pac_http.patch
 02_url_user.patch
+03_format-security.patch




More information about the pkg-gnome-commits mailing list