pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/www/w3m Add a patch for a recent format string bug fro...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/e63dd553a5d1
branches:  trunk
changeset: 522887:e63dd553a5d1
user:      adrianp <adrianp%pkgsrc.org@localhost>
date:      Thu Dec 28 22:08:35 2006 +0000

description:
Add a patch for a recent format string bug from the w3m CVS
Bump PKGREVISION

diffstat:

 www/w3m/Makefile         |   4 ++--
 www/w3m/distinfo         |   3 ++-
 www/w3m/patches/patch-ac |  13 +++++++++++++
 3 files changed, 17 insertions(+), 3 deletions(-)

diffs (43 lines):

diff -r 23fcdec597c4 -r e63dd553a5d1 www/w3m/Makefile
--- a/www/w3m/Makefile  Thu Dec 28 18:19:00 2006 +0000
+++ b/www/w3m/Makefile  Thu Dec 28 22:08:35 2006 +0000
@@ -1,8 +1,8 @@
-# $NetBSD: Makefile,v 1.48 2006/02/05 23:11:29 joerg Exp $
+# $NetBSD: Makefile,v 1.49 2006/12/28 22:08:35 adrianp Exp $
 #
 
 PKGNAME=       w3m-${W3M_VERS}
-PKGREVISION=   4
+PKGREVISION=   5
 COMMENT=       Multilingualized version of a pager/text-based browser w3m
 
 CONFLICTS+=    w3m-img-[0-9]*
diff -r 23fcdec597c4 -r e63dd553a5d1 www/w3m/distinfo
--- a/www/w3m/distinfo  Thu Dec 28 18:19:00 2006 +0000
+++ b/www/w3m/distinfo  Thu Dec 28 22:08:35 2006 +0000
@@ -1,6 +1,7 @@
-$NetBSD: distinfo,v 1.15 2005/02/24 14:08:39 wiz Exp $
+$NetBSD: distinfo,v 1.16 2006/12/28 22:08:35 adrianp Exp $
 
 SHA1 (w3m-0.5.1.tar.gz) = 7da299648c236772bcde9b0e92e23346c8af0aca
 RMD160 (w3m-0.5.1.tar.gz) = a5ffd3a8d44ed55109a1ab4a34d51ae236902654
 Size (w3m-0.5.1.tar.gz) = 1892121 bytes
 SHA1 (patch-ab) = c0c21616d1d3557453648107eca26eaa91af4741
+SHA1 (patch-ac) = 422b45e25791f6ceb6fa4169ae76c56fa4dd27ff
diff -r 23fcdec597c4 -r e63dd553a5d1 www/w3m/patches/patch-ac
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/www/w3m/patches/patch-ac  Thu Dec 28 22:08:35 2006 +0000
@@ -0,0 +1,13 @@
+$NetBSD: patch-ac,v 1.12 2006/12/28 22:08:35 adrianp Exp $
+
+--- file.c.orig        2004-04-16 19:47:19.000000000 +0100
++++ file.c
+@@ -7799,7 +7799,7 @@ inputAnswer(char *prompt)
+       ans = inputChar(prompt);
+     }
+     else {
+-      printf(prompt);
++      printf("%s", prompt);
+       fflush(stdout);
+       ans = Strfgets(stdin)->ptr;
+     }



Home | Main Index | Thread Index | Old Index