summaryrefslogtreecommitdiff
path: root/mail/claws-mail
diff options
context:
space:
mode:
authorAlexander Leidinger <netchild@FreeBSD.org>2003-10-23 14:35:39 +0000
committerAlexander Leidinger <netchild@FreeBSD.org>2003-10-23 14:35:39 +0000
commitaaf2f236f0c1af4fdf6f37b933e1726155ed5ca0 (patch)
tree00093116b1c267e121406284be919c3fccdd75e6 /mail/claws-mail
parent*grr* Readd accidently deleted patch. (diff)
Fix format string bug, see http://www.guninski.com/sylph.html for more.
Submitted by: trevor Found by: Georgi Guninski <guninski@guninski.com>
Notes
Notes: svn path=/head/; revision=91964
Diffstat (limited to 'mail/claws-mail')
-rw-r--r--mail/claws-mail/Makefile1
-rw-r--r--mail/claws-mail/files/patch-format_string_fix12
2 files changed, 13 insertions, 0 deletions
diff --git a/mail/claws-mail/Makefile b/mail/claws-mail/Makefile
index 22527263416f..9c831939aa92 100644
--- a/mail/claws-mail/Makefile
+++ b/mail/claws-mail/Makefile
@@ -7,6 +7,7 @@
PORTNAME= sylpheed-claws
PORTVERSION= 0.9.6
+PORTREVISION= 1
CATEGORIES= mail news ipv6
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= sylpheed-claws
diff --git a/mail/claws-mail/files/patch-format_string_fix b/mail/claws-mail/files/patch-format_string_fix
new file mode 100644
index 000000000000..02e73239f621
--- /dev/null
+++ b/mail/claws-mail/files/patch-format_string_fix
@@ -0,0 +1,12 @@
+diff -u -r1.18 -r1.19
+--- src/send_message.c 2003/09/27 21:01:26 1.18
++++ src/send_message.c 2003/10/03 17:39:39 1.19
+@@ -608,7 +608,7 @@
+ 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);
+ }
+ }