aboutsummaryrefslogtreecommitdiffstats
path: root/camel/providers/imap
diff options
context:
space:
mode:
authorNot Zed <NotZed@Ximian.com>2003-04-10 19:35:00 +0800
committerMichael Zucci <zucchi@src.gnome.org>2003-04-10 19:35:00 +0800
commit2e7d1434aedfbb634ede57faf6741dae5419d520 (patch)
treec899efdc2fdbce344fbced33e345868d4259a37c /camel/providers/imap
parent0933b12476c210975487cd29c3e05a0f248eac04 (diff)
downloadgsoc2013-evolution-2e7d1434aedfbb634ede57faf6741dae5419d520.tar
gsoc2013-evolution-2e7d1434aedfbb634ede57faf6741dae5419d520.tar.gz
gsoc2013-evolution-2e7d1434aedfbb634ede57faf6741dae5419d520.tar.bz2
gsoc2013-evolution-2e7d1434aedfbb634ede57faf6741dae5419d520.tar.lz
gsoc2013-evolution-2e7d1434aedfbb634ede57faf6741dae5419d520.tar.xz
gsoc2013-evolution-2e7d1434aedfbb634ede57faf6741dae5419d520.tar.zst
gsoc2013-evolution-2e7d1434aedfbb634ede57faf6741dae5419d520.zip
filter data test cases.
2003-04-10 Not Zed <NotZed@Ximian.com> * tests/mime-filter/data: filter data test cases. * tests/mime-filter/test-tohtml.c: New test for html filter. ** See bug #40969 * camel-mime-filter-tohtml.c (html_convert): Change the logic slightly, scan a whole line within the main loop. svn path=/trunk/; revision=20799
Diffstat (limited to 'camel/providers/imap')
-rw-r--r--camel/providers/imap/camel-imap-store.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/camel/providers/imap/camel-imap-store.c b/camel/providers/imap/camel-imap-store.c
index 7004b7d6a7..3b045fd084 100644
--- a/camel/providers/imap/camel-imap-store.c
+++ b/camel/providers/imap/camel-imap-store.c
@@ -2433,7 +2433,7 @@ get_one_folder_offline (const char *physical_path, const char *path, gpointer da
si = camel_store_summary_path((CamelStoreSummary *)imap_store->summary, path+1);
if (si) {
if ((((CamelStore *)imap_store)->flags & CAMEL_STORE_SUBSCRIPTIONS) == 0
- || si->flags & CAMEL_STORE_INFO_FOLDER_SUBSCRIBED) {
+ || (si->flags & CAMEL_STORE_INFO_FOLDER_SUBSCRIBED)) {
fi = imap_build_folder_info(imap_store, path+1);
fi->flags = si->flags;
if (si->flags & CAMEL_FOLDER_NOSELECT) {