diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2002-10-01 04:45:42 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2002-10-01 04:45:42 +0800 |
commit | 326d9cdc79b6b0df11cefbefc15a17a50a38c39f (patch) | |
tree | 0a87534b0c1c2221742d7b081a48fd9c40c1b059 /camel/providers | |
parent | 29cd9a0bef80716827a9800af6a764aa6fe21446 (diff) | |
download | gsoc2013-evolution-326d9cdc79b6b0df11cefbefc15a17a50a38c39f.tar gsoc2013-evolution-326d9cdc79b6b0df11cefbefc15a17a50a38c39f.tar.gz gsoc2013-evolution-326d9cdc79b6b0df11cefbefc15a17a50a38c39f.tar.bz2 gsoc2013-evolution-326d9cdc79b6b0df11cefbefc15a17a50a38c39f.tar.lz gsoc2013-evolution-326d9cdc79b6b0df11cefbefc15a17a50a38c39f.tar.xz gsoc2013-evolution-326d9cdc79b6b0df11cefbefc15a17a50a38c39f.tar.zst gsoc2013-evolution-326d9cdc79b6b0df11cefbefc15a17a50a38c39f.zip |
Don't strip the namespace from the fi->full_name when hasing or creating
2002-09-30 Jeffrey Stedfast <fejj@ximian.com>
* camel-store.c (camel_folder_info_build): Don't strip the
namespace from the fi->full_name when hasing or creating fake
parent folders. Fixes a bug I found while trying to reproduce bug
#31456.
svn path=/trunk/; revision=18270
Diffstat (limited to 'camel/providers')
-rw-r--r-- | camel/providers/imap/camel-imap-store.c | 2 |
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 f854d78a11..215f15f279 100644 --- a/camel/providers/imap/camel-imap-store.c +++ b/camel/providers/imap/camel-imap-store.c @@ -911,7 +911,7 @@ imap_forget_folder (CamelImapStore *imap_store, const char *folder_name, CamelEx unlink (summary_file); g_free (summary_file); - + journal_file = g_strdup_printf ("%s/summary", folder_dir); unlink (journal_file); g_free (journal_file); |