diff options
author | Dan Winship <danw@src.gnome.org> | 2000-10-18 11:03:48 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2000-10-18 11:03:48 +0800 |
commit | 0ae667a794384246396f2dc903b709e6c6634698 (patch) | |
tree | d1954d1851fb7a20269747ac97b6d1a32a9fe037 /camel/providers/imap/camel-imap-store.c | |
parent | bcafa8027f5f7d7f9a513a1109c6ec81bee8f5df (diff) | |
download | gsoc2013-evolution-0ae667a794384246396f2dc903b709e6c6634698.tar.gz gsoc2013-evolution-0ae667a794384246396f2dc903b709e6c6634698.tar.zst gsoc2013-evolution-0ae667a794384246396f2dc903b709e6c6634698.zip |
Remove cached info at the end of the summary when the folder shrinks
* providers/imap/camel-imap-folder.c (imap_refresh_info): Remove
cached info at the end of the summary when the folder shrinks
between sessions. Also remove an untrue comment.
* providers/imap/camel-imap-store.c (get_folder): Fix up
summary_file to not include the namespace twice.
svn path=/trunk/; revision=5974
Diffstat (limited to 'camel/providers/imap/camel-imap-store.c')
-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 6ad48107b1..ae4c13c150 100644 --- a/camel/providers/imap/camel-imap-store.c +++ b/camel/providers/imap/camel-imap-store.c @@ -448,7 +448,7 @@ get_folder (CamelStore *store, const char *folder_name, gboolean create, CamelEx summary_file = g_strdup_printf ("%s/%s/#summary", imap_store->storage_path, - folder_path); + folder_name); p = strrchr (summary_file, '/'); *p = '\0'; if (e_mkdir_hier (summary_file, S_IRWXU) == 0) { |