aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-store.c
diff options
context:
space:
mode:
authorNot Zed <NotZed@Ximian.com>2004-02-05 16:18:35 +0800
committerMichael Zucci <zucchi@src.gnome.org>2004-02-05 16:18:35 +0800
commit9e58087307421a11742b41003edda9a7b949bd31 (patch)
tree9753cd12d5b830632fb30c59f7564acace2a439a /camel/camel-store.c
parenta7f64b5c163c2a5651637e2441e48fa5d96451d0 (diff)
downloadgsoc2013-evolution-9e58087307421a11742b41003edda9a7b949bd31.tar
gsoc2013-evolution-9e58087307421a11742b41003edda9a7b949bd31.tar.gz
gsoc2013-evolution-9e58087307421a11742b41003edda9a7b949bd31.tar.bz2
gsoc2013-evolution-9e58087307421a11742b41003edda9a7b949bd31.tar.lz
gsoc2013-evolution-9e58087307421a11742b41003edda9a7b949bd31.tar.xz
gsoc2013-evolution-9e58087307421a11742b41003edda9a7b949bd31.tar.zst
gsoc2013-evolution-9e58087307421a11742b41003edda9a7b949bd31.zip
rename .cmeta file too, and fix the recovery order.
2004-02-05 Not Zed <NotZed@Ximian.com> * providers/local/camel-mbox-store.c (rename_folder): rename .cmeta file too, and fix the recovery order. * providers/local/camel-local-store.c (rename_folder): rename the .cmeta file too. * providers/local/camel-local-folder.c (local_rename): fix this to use local_get_full_path stuff. * camel-store.c (camel_store_rename_folder): fix umr's comparing old and new names. svn path=/trunk/; revision=24630
Diffstat (limited to 'camel/camel-store.c')
-rw-r--r--camel/camel-store.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/camel/camel-store.c b/camel/camel-store.c
index d4ebdc89b8..10f14a8568 100644
--- a/camel/camel-store.c
+++ b/camel/camel-store.c
@@ -409,7 +409,7 @@ camel_store_rename_folder (CamelStore *store, const char *old_namein, const char
d(printf("store rename folder %s '%s' '%s'\n", ((CamelService *)store)->url->protocol, old_name, new_name));
- if (strcmp(old_name, new_name) == 0)
+ if (strcmp(old_namein, new_name) == 0)
return;
/* need to save this, since old_namein might be folder->full_name, which could go away */