diff options
author | Jeffrey Stedfast <fejj@src.gnome.org> | 2001-06-30 05:25:24 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2001-06-30 05:25:24 +0800 |
commit | c78f6bec65bc0ac498e379e00004e0385754c53c (patch) | |
tree | b2ad0bc0c667ceedc1e781f52ecdedf53667209d /mail/mail-callbacks.c | |
parent | 6ec4e9f82620a7d4d692c4ef00e887ced18b54b7 (diff) | |
download | gsoc2013-evolution-c78f6bec65bc0ac498e379e00004e0385754c53c.tar gsoc2013-evolution-c78f6bec65bc0ac498e379e00004e0385754c53c.tar.gz gsoc2013-evolution-c78f6bec65bc0ac498e379e00004e0385754c53c.tar.bz2 gsoc2013-evolution-c78f6bec65bc0ac498e379e00004e0385754c53c.tar.lz gsoc2013-evolution-c78f6bec65bc0ac498e379e00004e0385754c53c.tar.xz gsoc2013-evolution-c78f6bec65bc0ac498e379e00004e0385754c53c.tar.zst gsoc2013-evolution-c78f6bec65bc0ac498e379e00004e0385754c53c.zip |
fixed a logic mistake in the last commit
svn path=/trunk/; revision=10609
Diffstat (limited to 'mail/mail-callbacks.c')
-rw-r--r-- | mail/mail-callbacks.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/mail/mail-callbacks.c b/mail/mail-callbacks.c index 0bc2898d27..256d23846d 100644 --- a/mail/mail-callbacks.c +++ b/mail/mail-callbacks.c @@ -344,19 +344,11 @@ composer_get_message (EMsgComposer *composer) return NULL; /* Check for recipients */ - for (num_addrs = 0, i = 0; i < 3 && num_addrs == 0; i++) { + for (num_addrs = 0, i = 0; i < 3; i++) { iaddr = camel_mime_message_get_recipients (message, recipient_type[i]); num_addrs += iaddr ? camel_address_length (CAMEL_ADDRESS (iaddr)) : 0; } - if (num_addrs == camel_address_length (CAMEL_ADDRESS (iaddr))) { - /* this means that the only recipients are Bcc's */ - if (!ask_confirm_for_only_bcc (composer)) { - camel_object_unref (CAMEL_OBJECT (message)); - return NULL; - } - } - /* I'm sensing a lack of love, er, I mean recipients. */ if (num_addrs == 0) { GtkWidget *message_box; @@ -373,6 +365,14 @@ composer_get_message (EMsgComposer *composer) return NULL; } + if (iaddr && num_addrs == camel_address_length (CAMEL_ADDRESS (iaddr))) { + /* this means that the only recipients are Bcc's */ + if (!ask_confirm_for_only_bcc (composer)) { + camel_object_unref (CAMEL_OBJECT (message)); + return NULL; + } + } + /* Check for no subject */ subject = camel_mime_message_get_subject (message); if (subject == NULL || subject[0] == '\0') { |