[xml/sgml-commit] r2278 - in /packages/html-xml-utils/trunk/debian: changelog patches/ patches/format_fix.patch patches/series

dleidert at users.alioth.debian.org dleidert at users.alioth.debian.org
Thu Oct 6 22:05:14 UTC 2016


Author: dleidert
Date: Thu Oct  6 22:05:14 2016
New Revision: 2278

URL: http://svn.debian.org/wsvn/debian-xml-sgml/?sc=1&rev=2278
Log:
* debian/patches/format_fix.patch: Added.
  - Fix FTBFS with -Werror=format-security.
* debian/patches/series: Added.

Added:
    packages/html-xml-utils/trunk/debian/patches/
    packages/html-xml-utils/trunk/debian/patches/format_fix.patch
    packages/html-xml-utils/trunk/debian/patches/series
Modified:
    packages/html-xml-utils/trunk/debian/changelog

Modified: packages/html-xml-utils/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/debian-xml-sgml/packages/html-xml-utils/trunk/debian/changelog?rev=2278&op=diff
==============================================================================
--- packages/html-xml-utils/trunk/debian/changelog	(original)
+++ packages/html-xml-utils/trunk/debian/changelog	Thu Oct  6 22:05:14 2016
@@ -5,6 +5,9 @@
   * debian/control (Standards-Version): Bumped to 3.9.8.
     (Build-Depends): Added libidn2-0-dev.
   * debian/copyright: Updated.
+  * debian/patches/format_fix.patch: Added.
+    - Fix FTBFS with -Werror=format-security.
+  * debian/patches/series: Added.
 
  -- Daniel Leidert <dleidert at debian.org>  Sun, 03 May 2015 11:24:45 +0200
 

Added: packages/html-xml-utils/trunk/debian/patches/format_fix.patch
URL: http://svn.debian.org/wsvn/debian-xml-sgml/packages/html-xml-utils/trunk/debian/patches/format_fix.patch?rev=2278&op=file
==============================================================================
--- packages/html-xml-utils/trunk/debian/patches/format_fix.patch	(added)
+++ packages/html-xml-utils/trunk/debian/patches/format_fix.patch	Thu Oct  6 22:05:14 2016
@@ -0,0 +1,14 @@
+Author: Daniel Leidert <dleidert at debian.org>
+Description: Fix FTBFS with -Werror=format-security.
+
+--- a/url.c
++++ b/url.c
+@@ -61,7 +61,7 @@
+ 
+   rc = idn2_lookup_u8(s, (uint8_t**)&p, IDN2_NFC_INPUT);
+   if (rc == IDN2_OK) return p;
+-  warnx(idn2_strerror(rc));
++  warnx("%s", idn2_strerror(rc));
+   return newstring(s);
+ #elif HAVE_LIBIDN
+   string p;

Added: packages/html-xml-utils/trunk/debian/patches/series
URL: http://svn.debian.org/wsvn/debian-xml-sgml/packages/html-xml-utils/trunk/debian/patches/series?rev=2278&op=file
==============================================================================
--- packages/html-xml-utils/trunk/debian/patches/series	(added)
+++ packages/html-xml-utils/trunk/debian/patches/series	Thu Oct  6 22:05:14 2016
@@ -0,0 +1 @@
+format_fix.patch




More information about the debian-xml-sgml-commit mailing list