aboutsummaryrefslogtreecommitdiffstats
path: root/camel
diff options
context:
space:
mode:
Diffstat (limited to 'camel')
-rw-r--r--camel/ChangeLog4
-rw-r--r--camel/providers/local/camel-maildir-folder.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog
index d638cf6671..2387fd091d 100644
--- a/camel/ChangeLog
+++ b/camel/ChangeLog
@@ -1,5 +1,9 @@
2001-10-17 <NotZed@Ximian.com>
+ * providers/local/camel-maildir-folder.c
+ (camel_maildir_folder_new): Use '.' as the inbox name for filter
+ new messages test.
+
* camel-store.c (camel_folder_info_clone): New function to clone a
folderinfo tree.
diff --git a/camel/providers/local/camel-maildir-folder.c b/camel/providers/local/camel-maildir-folder.c
index 48eb510219..8bd8229237 100644
--- a/camel/providers/local/camel-maildir-folder.c
+++ b/camel/providers/local/camel-maildir-folder.c
@@ -112,7 +112,7 @@ camel_maildir_folder_new(CamelStore *parent_store, const char *full_name, guint3
folder = (CamelFolder *)camel_object_new(CAMEL_MAILDIR_FOLDER_TYPE);
if (parent_store->flags & CAMEL_STORE_FILTER_INBOX
- && strcmp(full_name, "") == 0)
+ && strcmp(full_name, ".") == 0)
folder->folder_flags |= CAMEL_FOLDER_FILTER_RECENT;
folder = (CamelFolder *)camel_local_folder_construct((CamelLocalFolder *)folder,