diff options
author | drochner <drochner@pkgsrc.org> | 2005-02-09 16:09:43 +0000 |
---|---|---|
committer | drochner <drochner@pkgsrc.org> | 2005-02-09 16:09:43 +0000 |
commit | 71e50f633a60a021d412169fb2ef22051c206ac7 (patch) | |
tree | 7243b02d542f9a363a2c2fc7e7114ed5c7e36cfd /editors/emacs20 | |
parent | 5787c29fa740afbffa6a25031f0459e66a7846ef (diff) | |
download | pkgsrc-71e50f633a60a021d412169fb2ef22051c206ac7.tar.gz |
fix format string vulnerability (CAN-2005-0100), bump PKGREVISION
Diffstat (limited to 'editors/emacs20')
-rw-r--r-- | editors/emacs20/Makefile | 4 | ||||
-rw-r--r-- | editors/emacs20/distinfo | 3 | ||||
-rw-r--r-- | editors/emacs20/patches/patch-ca | 13 |
3 files changed, 17 insertions, 3 deletions
diff --git a/editors/emacs20/Makefile b/editors/emacs20/Makefile index 2f72328b46d..6d174408bd5 100644 --- a/editors/emacs20/Makefile +++ b/editors/emacs20/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.14 2004/10/03 00:14:38 tv Exp $ +# $NetBSD: Makefile,v 1.15 2005/02/09 16:09:43 drochner Exp $ DISTNAME= emacs-20.7 -PKGREVISION= 4 +PKGREVISION= 5 CATEGORIES= editors MASTER_SITES= ${MASTER_SITE_GNU:=emacs/} \ ${MASTER_SITE_LOCAL} diff --git a/editors/emacs20/distinfo b/editors/emacs20/distinfo index 03c585bf28f..28b2f9ed234 100644 --- a/editors/emacs20/distinfo +++ b/editors/emacs20/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.5 2004/03/25 22:13:34 kristerw Exp $ +$NetBSD: distinfo,v 1.6 2005/02/09 16:09:43 drochner Exp $ SHA1 (emacs-20.7.tar.gz) = ef0168b927fb633bc9b14e2249431f26ff8b8452 Size (emacs-20.7.tar.gz) = 15043428 bytes @@ -47,3 +47,4 @@ SHA1 (patch-bw) = 5de9f12d129b2f13a1d9c1702c7a889cd6b922f4 SHA1 (patch-bx) = 27713e1812240f9ed137aa793cbb5a4fa2cad33b SHA1 (patch-by) = a383206a32e902c448a1b529cf1eefc485f5beab SHA1 (patch-bz) = ef28314afc69c37da92ec208252e477bbb522458 +SHA1 (patch-ca) = e9c9929ea5f16ac9f4bec09f2bf8e4e28578702d diff --git a/editors/emacs20/patches/patch-ca b/editors/emacs20/patches/patch-ca new file mode 100644 index 00000000000..d9a060ae454 --- /dev/null +++ b/editors/emacs20/patches/patch-ca @@ -0,0 +1,13 @@ +$NetBSD: patch-ca,v 1.1 2005/02/09 16:09:43 drochner Exp $ + +--- lib-src/movemail.c.orig 2005-02-09 16:55:15.000000000 +0100 ++++ lib-src/movemail.c +@@ -765,7 +765,7 @@ popmail (user, outfile, preserve, passwo + mbx_delimit_begin (mbf); + if (pop_retr (server, i, mbf) != OK) + { +- error (Errmsg); ++ error ("%s", Errmsg); + close (mbfi); + return (1); + } |