summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2008-05-30 09:46:02 +0000
committerMilan Crha <mcrha@src.gnome.org>2008-05-30 09:46:02 +0000
commit38bebba9fbba3f3fea87258931b2f269b912b082 (patch)
tree5a279297a0ab4dc557663c7b118eef068d6e4c98
parent6d2f443a989e36770ae4b6078d8220d41ccfc419 (diff)
downloadevolution-data-server-38bebba9fbba3f3fea87258931b2f269b912b082.tar.gz
** Fix for bug #318803 (Patch by Ilkka Tuohela)
2008-05-30 Milan Crha <mcrha@redhat.com> ** Fix for bug #318803 (Patch by Ilkka Tuohela) * camel-maildir-store.c: (scan_dirs): Do not show ".#evolution" directory in the UI. svn path=/trunk/; revision=8878
-rw-r--r--camel/providers/local/ChangeLog7
-rw-r--r--camel/providers/local/camel-maildir-store.c1
2 files changed, 8 insertions, 0 deletions
diff --git a/camel/providers/local/ChangeLog b/camel/providers/local/ChangeLog
index 6da202e58..3d52fba46 100644
--- a/camel/providers/local/ChangeLog
+++ b/camel/providers/local/ChangeLog
@@ -1,3 +1,10 @@
+2008-05-30 Milan Crha <mcrha@redhat.com>
+
+ ** Fix for bug #318803 (Patch by Ilkka Tuohela)
+
+ * camel-maildir-store.c: (scan_dirs):
+ Do not show ".#evolution" directory in the UI.
+
2008-05-19 Matthew Barnes <mbarnes@redhat.com>
** Fixes part of bug #531591
diff --git a/camel/providers/local/camel-maildir-store.c b/camel/providers/local/camel-maildir-store.c
index f486f9c3e..e1cf78996 100644
--- a/camel/providers/local/camel-maildir-store.c
+++ b/camel/providers/local/camel-maildir-store.c
@@ -445,6 +445,7 @@ scan_dirs(CamelStore *store, guint32 flags, CamelFolderInfo *topfi, CamelURL *ur
if (strcmp(d->d_name, "tmp") == 0
|| strcmp(d->d_name, "cur") == 0
|| strcmp(d->d_name, "new") == 0
+ || strcmp(d->d_name, ".#evolution") == 0
|| strcmp(d->d_name, ".") == 0
|| strcmp(d->d_name, "..") == 0)
continue;