From 59302f6281f819cb3094240022ccd4a827280e68 Mon Sep 17 00:00:00 2001 From: Paul Mangan Date: Mon, 18 Sep 2006 08:38:28 +0000 Subject: [PATCH] 2006-09-18 [paul] 2.4.0cvs196 * src/compose.c fix bug 1012 'crashed upon sending mail from compose window' Thanks to Colin --- ChangeLog | 7 +++++++ PATCHSETS | 1 + configure.ac | 2 +- src/compose.c | 2 +- 4 files changed, 10 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index b65925290..773d5bc7b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2006-09-18 [paul] 2.4.0cvs196 + + * src/compose.c + fix bug 1012 'crashed upon sending mail + from compose window' + Thanks to Colin + 2006-09-16 [colin] 2.4.0cvs195 * src/folderview.c diff --git a/PATCHSETS b/PATCHSETS index 366cefc8a..a390507aa 100644 --- a/PATCHSETS +++ b/PATCHSETS @@ -1887,3 +1887,4 @@ ( cvs diff -u -r 1.1.2.33 -r 1.1.2.34 src/wizard.c; ) > 2.4.0cvs193.patchset ( cvs diff -u -r 1.1.2.11 -r 1.1.2.12 manual/faq.xml; ) > 2.4.0cvs194.patchset ( cvs diff -u -r 1.207.2.120 -r 1.207.2.121 src/folderview.c; ) > 2.4.0cvs195.patchset +( cvs diff -u -r 1.382.2.307 -r 1.382.2.308 src/compose.c; ) > 2.4.0cvs196.patchset diff --git a/configure.ac b/configure.ac index 50b4562cf..e1acdd8bd 100644 --- a/configure.ac +++ b/configure.ac @@ -11,7 +11,7 @@ MINOR_VERSION=4 MICRO_VERSION=0 INTERFACE_AGE=0 BINARY_AGE=0 -EXTRA_VERSION=195 +EXTRA_VERSION=196 EXTRA_RELEASE= EXTRA_GTK2_VERSION= diff --git a/src/compose.c b/src/compose.c index 19edd453b..a76bf917d 100644 --- a/src/compose.c +++ b/src/compose.c @@ -4021,7 +4021,7 @@ static gboolean compose_check_for_set_recipients(Compose *compose) entry = gtk_editable_get_chars(GTK_EDITABLE(((ComposeHeaderEntry *)list->data)->entry), 0, -1); header = gtk_editable_get_chars(GTK_EDITABLE(GTK_COMBO(((ComposeHeaderEntry *)list->data)->combo)->entry), 0, -1); g_strstrip(entry); - if (strcmp(entry, compose->account->auto_cc) + if (strcmp(entry, compose->account->auto_bcc) || strcmp(header, (prefs_common.trans_hdr ? gettext("Bcc:") : "Bcc:"))) { found_other = TRUE; g_free(entry); -- 2.25.1