summaryrefslogtreecommitdiff
path: root/mail/sylpheed-claws
diff options
context:
space:
mode:
authorcube <cube>2003-10-22 16:49:25 +0000
committercube <cube>2003-10-22 16:49:25 +0000
commit194380b7b73b9d2826c65882f8399ad7bff442db (patch)
treef3a820fa9538472fd8d6fc0680fc43d28bd8ae66 /mail/sylpheed-claws
parent0e1c443a50c7e28309024f2c6255d88387f2ef06 (diff)
downloadpkgsrc-194380b7b73b9d2826c65882f8399ad7bff442db.tar.gz
Pull-up security patch from CVS. Bump PKGREVISION.
Fixes a format string error leading to a crash from malicious SMTP servers. http://www.guninski.com/sylph.html
Diffstat (limited to 'mail/sylpheed-claws')
-rw-r--r--mail/sylpheed-claws/Makefile4
-rw-r--r--mail/sylpheed-claws/distinfo3
-rw-r--r--mail/sylpheed-claws/patches/patch-aa13
3 files changed, 17 insertions, 3 deletions
diff --git a/mail/sylpheed-claws/Makefile b/mail/sylpheed-claws/Makefile
index d9a07cb86fd..2b2e0e9cca5 100644
--- a/mail/sylpheed-claws/Makefile
+++ b/mail/sylpheed-claws/Makefile
@@ -1,8 +1,8 @@
-# $NetBSD: Makefile,v 1.20 2003/09/28 11:38:51 xtraeme Exp $
+# $NetBSD: Makefile,v 1.21 2003/10/22 16:49:25 cube Exp $
#
DISTNAME= sylpheed-0.9.4claws
-PKGREVISION= 1
+PKGREVISION= 2
PKGNAME= sylpheed-claws-0.9.4
CATEGORIES= mail news x11
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=sylpheed-claws/}
diff --git a/mail/sylpheed-claws/distinfo b/mail/sylpheed-claws/distinfo
index 14745afd5db..fd6a0b4ded2 100644
--- a/mail/sylpheed-claws/distinfo
+++ b/mail/sylpheed-claws/distinfo
@@ -1,4 +1,5 @@
-$NetBSD: distinfo,v 1.8 2003/09/03 18:19:43 xtraeme Exp $
+$NetBSD: distinfo,v 1.9 2003/10/22 16:49:25 cube Exp $
SHA1 (sylpheed-0.9.4claws.tar.bz2) = 4c97d56e154463f09c6f9b9517110ffd1eeaf80b
Size (sylpheed-0.9.4claws.tar.bz2) = 2609202 bytes
+SHA1 (patch-aa) = 85f1f67c1fd6a12a4dca03460e2af7bd2f40e4a4
diff --git a/mail/sylpheed-claws/patches/patch-aa b/mail/sylpheed-claws/patches/patch-aa
new file mode 100644
index 00000000000..5c1325bc147
--- /dev/null
+++ b/mail/sylpheed-claws/patches/patch-aa
@@ -0,0 +1,13 @@
+$NetBSD: patch-aa,v 1.1 2003/10/22 16:49:26 cube Exp $
+
+--- src/send_message.c.orig 2003-07-22 13:16:26.000000000 +0200
++++ src/send_message.c
+@@ -614,7 +614,7 @@ static void send_put_error(Session *sess
+ if (log_msg)
+ log_warning("%s\n", log_msg);
+ if (err_msg) {
+- alertpanel_error_log(err_msg);
++ alertpanel_error_log("%s", err_msg);
+ g_free(err_msg);
+ }
+ }