diff options
author | Jeffrey Stedfast <fejj@src.gnome.org> | 2003-03-13 03:07:27 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2003-03-13 03:07:27 +0800 |
commit | 8bfabb5cf21422a13242cd169e0e92c126124be4 (patch) | |
tree | 2ef9a287f63536f77b4c303aee90336cdbfe57a2 /mail | |
parent | 0dadd920273918bd3d9e5a2cf678a367f41f3a81 (diff) | |
download | gsoc2013-evolution-8bfabb5cf21422a13242cd169e0e92c126124be4.tar.gz gsoc2013-evolution-8bfabb5cf21422a13242cd169e0e92c126124be4.tar.zst gsoc2013-evolution-8bfabb5cf21422a13242cd169e0e92c126124be4.zip |
revert a commit that I didn't mean to do
svn path=/trunk/; revision=20267
Diffstat (limited to 'mail')
-rw-r--r-- | mail/mail-ops.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mail/mail-ops.c b/mail/mail-ops.c index 135f410afe..11bf3d8b0e 100644 --- a/mail/mail-ops.c +++ b/mail/mail-ops.c @@ -717,7 +717,7 @@ send_queue_send(struct _mail_msg *mm) uids = camel_folder_get_uids (m->queue); if (uids == NULL || uids->len == 0) return; - + if (m->cancel) camel_operation_register (m->cancel); @@ -743,17 +743,17 @@ send_queue_send(struct _mail_msg *mm) camel_folder_set_message_flags (m->queue, uids->pdata[i], CAMEL_MESSAGE_DELETED, CAMEL_MESSAGE_DELETED); } - + if (camel_exception_is_set (&mm->ex)) report_status (m, CAMEL_FILTER_STATUS_END, 100, _("Failed on message %d of %d"), i+1, uids->len); else report_status (m, CAMEL_FILTER_STATUS_END, 100, _("Complete.")); - + if (m->driver) { camel_object_unref((CamelObject *)m->driver); m->driver = NULL; } - + camel_folder_free_uids (m->queue, uids); if (!camel_exception_is_set (&mm->ex)) |