aboutsummaryrefslogtreecommitdiffstats
path: root/mail
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2004-02-07 03:07:08 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2004-02-07 03:07:08 +0800
commitdf342c9259241a70a3faa441aa061d093949bc71 (patch)
treea94241228248feaa9d917c0aaf6e55d1bd0f342c /mail
parentc07b2b93b5e9d8cdb6bea9e76481e9894b49da7d (diff)
downloadgsoc2013-evolution-df342c9259241a70a3faa441aa061d093949bc71.tar
gsoc2013-evolution-df342c9259241a70a3faa441aa061d093949bc71.tar.gz
gsoc2013-evolution-df342c9259241a70a3faa441aa061d093949bc71.tar.bz2
gsoc2013-evolution-df342c9259241a70a3faa441aa061d093949bc71.tar.lz
gsoc2013-evolution-df342c9259241a70a3faa441aa061d093949bc71.tar.xz
gsoc2013-evolution-df342c9259241a70a3faa441aa061d093949bc71.tar.zst
gsoc2013-evolution-df342c9259241a70a3faa441aa061d093949bc71.zip
Set the NO_VIRTUAL flag bit for get_folder_info(). Fixes bug #51887.
2004-02-06 Jeffrey Stedfast <fejj@ximian.com> * em-subscribe-editor.c (sub_folderinfo_get): Set the NO_VIRTUAL flag bit for get_folder_info(). Fixes bug #51887. svn path=/trunk/; revision=24657
Diffstat (limited to 'mail')
-rw-r--r--mail/ChangeLog5
-rw-r--r--mail/em-subscribe-editor.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog
index 59a144e955..bbffaac3ed 100644
--- a/mail/ChangeLog
+++ b/mail/ChangeLog
@@ -1,3 +1,8 @@
+2004-02-06 Jeffrey Stedfast <fejj@ximian.com>
+
+ * em-subscribe-editor.c (sub_folderinfo_get): Set the NO_VIRTUAL
+ flag bit for get_folder_info(). Fixes bug #51887.
+
2004-02-06 Radek Doulik <rodo@ximian.com>
* em-folder-view.c (emfv_popup_mark_nojunk): move to the next
diff --git a/mail/em-subscribe-editor.c b/mail/em-subscribe-editor.c
index 3dc772abba..dc7105b52b 100644
--- a/mail/em-subscribe-editor.c
+++ b/mail/em-subscribe-editor.c
@@ -339,7 +339,7 @@ sub_folderinfo_get (struct _mail_msg *mm)
struct _emse_folderinfo_msg *m = (struct _emse_folderinfo_msg *) mm;
camel_operation_register(mm->cancel);
- m->info = camel_store_get_folder_info (m->sub->store, m->node?m->node->info->full_name:"", CAMEL_STORE_FOLDER_INFO_FAST, &mm->ex);
+ m->info = camel_store_get_folder_info (m->sub->store, m->node?m->node->info->full_name:"", CAMEL_STORE_FOLDER_INFO_FAST | CAMEL_STORE_FOLDER_INFO_NO_VIRTUAL, &mm->ex);
camel_operation_unregister(mm->cancel);
}