diff options
author | drochner <drochner> | 2007-08-31 11:04:18 +0000 |
---|---|---|
committer | drochner <drochner> | 2007-08-31 11:04:18 +0000 |
commit | 41bb5118d5b921a7404cb5a96f4cd63c955a2cc0 (patch) | |
tree | cc0fec9f3e5f338949542ea85b93185dc278e544 /mail | |
parent | 12ac970ccd6a3cda2be40d43aa73509ca11dc836 (diff) | |
download | pkgsrc-41bb5118d5b921a7404cb5a96f4cd63c955a2cc0.tar.gz |
fix format string vulnerability in POP3 client (CVE-2007-2958),
bump PKGREVISION
Diffstat (limited to 'mail')
-rw-r--r-- | mail/claws-mail/Makefile | 4 | ||||
-rw-r--r-- | mail/claws-mail/distinfo | 3 | ||||
-rw-r--r-- | mail/claws-mail/patches/patch-ae | 13 |
3 files changed, 17 insertions, 3 deletions
diff --git a/mail/claws-mail/Makefile b/mail/claws-mail/Makefile index 27fb7165583..761ef803bc2 100644 --- a/mail/claws-mail/Makefile +++ b/mail/claws-mail/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.5 2007/08/17 03:23:02 smb Exp $ +# $NetBSD: Makefile,v 1.6 2007/08/31 11:04:18 drochner Exp $ .include "Makefile.common" @@ -6,7 +6,7 @@ MAINTAINER= smb@NetBSD.org COMMENT= X based e-mail and netnews client -PKGREVISION= 2 +PKGREVISION= 3 CONFLICTS+= sylpheed-claws-[0-9]* diff --git a/mail/claws-mail/distinfo b/mail/claws-mail/distinfo index 4dd82828de1..684fdafe5e3 100644 --- a/mail/claws-mail/distinfo +++ b/mail/claws-mail/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.2 2007/08/17 03:23:02 smb Exp $ +$NetBSD: distinfo,v 1.3 2007/08/31 11:04:18 drochner Exp $ SHA1 (claws-mail-2.10.0.tar.bz2) = 0ee38ec2dd0c37941b0bcc4af7ab441ec432c63c RMD160 (claws-mail-2.10.0.tar.bz2) = e10eed2c3461a8c85d6313f0c57581a3b0ea654f @@ -6,3 +6,4 @@ Size (claws-mail-2.10.0.tar.bz2) = 5520512 bytes SHA1 (patch-ab) = d908b8b47b525aa9d6ed677e5c1d5e5eddf74cc0 SHA1 (patch-ac) = 51eff8f483ad603c1493bdc6520a9669c3d097c9 SHA1 (patch-ad) = 9090824f9ad3688315567ed0857673cb94123897 +SHA1 (patch-ae) = 003ce854d58b8f25f12617b99fb245749704ec3d diff --git a/mail/claws-mail/patches/patch-ae b/mail/claws-mail/patches/patch-ae new file mode 100644 index 00000000000..170c3eccbda --- /dev/null +++ b/mail/claws-mail/patches/patch-ae @@ -0,0 +1,13 @@ +$NetBSD: patch-ae,v 1.1 2007/08/31 11:04:18 drochner Exp $ + +--- ./src/inc.c.orig 2007-08-31 12:46:22.000000000 +0200 ++++ ./src/inc.c +@@ -1203,7 +1203,7 @@ static void inc_put_error(IncState istat + mainwindow_show_error(); + + if (err_msg) { +- alertpanel_error_log(err_msg); ++ alertpanel_error_log("%s", err_msg); + g_free(err_msg); + } + } |