diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2004-02-03 03:01:37 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2004-02-03 03:01:37 +0800 |
commit | 28e9c8f3e5bb9711c700a483631f9b50ffc9b851 (patch) | |
tree | 6db8211c5576808bc363baa271900a2b1929de21 /camel/camel-store.c | |
parent | 9fc5c6a4065a4477bca0ecba521219dfd0a37c3d (diff) | |
download | gsoc2013-evolution-28e9c8f3e5bb9711c700a483631f9b50ffc9b851.tar.gz gsoc2013-evolution-28e9c8f3e5bb9711c700a483631f9b50ffc9b851.tar.zst gsoc2013-evolution-28e9c8f3e5bb9711c700a483631f9b50ffc9b851.zip |
Copy the flags too. Fixes the local folder case of bug #53091.
2004-02-02 Jeffrey Stedfast <fejj@ximian.com>
* camel-store.c (folder_info_clone_rec): Copy the flags too. Fixes
the local folder case of bug #53091.
svn path=/trunk/; revision=24571
Diffstat (limited to 'camel/camel-store.c')
-rw-r--r-- | camel/camel-store.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/camel/camel-store.c b/camel/camel-store.c index c1a63e7582..44d20b3f7e 100644 --- a/camel/camel-store.c +++ b/camel/camel-store.c @@ -1060,7 +1060,8 @@ static CamelFolderInfo *folder_info_clone_rec(CamelFolderInfo *fi, CamelFolderIn info->full_name = g_strdup(fi->full_name); info->path = g_strdup(fi->path); info->unread_message_count = fi->unread_message_count; - + info->flags = fi->flags; + if (fi->sibling) info->sibling = folder_info_clone_rec(fi->sibling, parent); else |