diff options
author | Tatsuya Kinoshita <tats@debian.org> | 2015-01-24 14:36:40 +0000 |
---|---|---|
committer | Tatsuya Kinoshita <tats@debian.org> | 2015-01-24 14:37:05 +0000 |
commit | 8595cb4102d547388d0d9e699d10a14f8f7aa71c (patch) | |
tree | cd27e4b710769000b651b9af4db2704a1cd328dd /debian/patches/060_format-security.patch | |
parent | Update Vcs-Browser (diff) | |
download | w3m-8595cb4102d547388d0d9e699d10a14f8f7aa71c.tar.gz w3m-8595cb4102d547388d0d9e699d10a14f8f7aa71c.zip |
Integrate Debian changes into 020_debian.patch (closes: #776112)
(debian/patches/*.patch except 010_upstream.patch are merged)
Diffstat (limited to '')
-rw-r--r-- | debian/patches/060_format-security.patch | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/debian/patches/060_format-security.patch b/debian/patches/060_format-security.patch deleted file mode 100644 index 6ac0425..0000000 --- a/debian/patches/060_format-security.patch +++ /dev/null @@ -1,44 +0,0 @@ -Description: Appease gcc -Werror=format-security -Author: Colin Watson <cjwatson@ubuntu.com> -Forwarded: no -Last-Update: 2011-10-23 - -Index: b/acinclude.m4 -=================================================================== ---- a/acinclude.m4 -+++ b/acinclude.m4 -@@ -866,7 +866,7 @@ - AC_TRY_COMPILE( - changequote(<<,>>)dnl - <<extern char *sys_errlist[];>>, --<<printf(sys_errlist[0]);>>, -+<<printf("%s", sys_errlist[0]);>>, - changequote([,])dnl - [have_sys_errlist="yes"; AC_DEFINE(HAVE_SYS_ERRLIST)], - [have_sys_errlist="no"]) -Index: b/configure -=================================================================== ---- a/configure -+++ b/configure -@@ -8986,7 +8986,7 @@ - int - main () - { --printf(sys_errlist[0]); -+printf("%s", sys_errlist[0]); - ; - return 0; - } -Index: b/w3mbookmark.c -=================================================================== ---- a/w3mbookmark.c -+++ b/w3mbookmark.c -@@ -99,7 +99,7 @@ - fprintf(f, "<body>\n<h1>Bookmarks</h1>\n"); - fprintf(f, "<h2>%s</h2>\n<ul>\n", section); - fprintf(f, "<li><a href=\"%s\">%s</a>\n", url, title); -- fprintf(f, end_section); -+ fprintf(f, "%s", end_section); - fprintf(f, "</ul>\n</body>\n</html>\n"); - fclose(f); - } |