diff options
author | cube <cube@pkgsrc.org> | 2003-10-22 16:49:25 +0000 |
---|---|---|
committer | cube <cube@pkgsrc.org> | 2003-10-22 16:49:25 +0000 |
commit | 36ea4fed7a8b2967d29c878776a83933e6afc368 (patch) | |
tree | f3a820fa9538472fd8d6fc0680fc43d28bd8ae66 /mail/sylpheed-claws | |
parent | dd67fc43a06710e19d7e1394c3d56ac218e92b32 (diff) | |
download | pkgsrc-36ea4fed7a8b2967d29c878776a83933e6afc368.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/Makefile | 4 | ||||
-rw-r--r-- | mail/sylpheed-claws/distinfo | 3 | ||||
-rw-r--r-- | mail/sylpheed-claws/patches/patch-aa | 13 |
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); + } + } |