diff options
author | 0 <NotZed@Ximian.com> | 2001-10-30 13:20:50 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2001-10-30 13:20:50 +0800 |
commit | 613e004309c27c94abd4b7159f430796ae70228a (patch) | |
tree | f90e6db60332027255585b17d0d1db07142694b0 /camel/camel-store.c | |
parent | aab1b48eaef5314da57ca3771b0cb7c9ae403773 (diff) | |
download | gsoc2013-evolution-613e004309c27c94abd4b7159f430796ae70228a.tar.gz gsoc2013-evolution-613e004309c27c94abd4b7159f430796ae70228a.tar.zst gsoc2013-evolution-613e004309c27c94abd4b7159f430796ae70228a.zip |
Dont try to move ibex if we have none.
2001-10-30 <NotZed@Ximian.com>
* providers/local/camel-local-store.c (rename_folder): Dont try to
move ibex if we have none.
svn path=/trunk/; revision=14429
Diffstat (limited to 'camel/camel-store.c')
-rw-r--r-- | camel/camel-store.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/camel/camel-store.c b/camel/camel-store.c index 5fd2032239..2b77d048c6 100644 --- a/camel/camel-store.c +++ b/camel/camel-store.c @@ -418,7 +418,7 @@ camel_store_rename_folder (CamelStore *store, const char *old_name, const char * struct _get_info info = { store, NULL, old_name, new_name }; int i; - printf("store rename folder '%s' '%s'\n", old_name, new_name); + d(printf("store rename folder %s '%s' '%s'\n", ((CamelService *)store)->url->protocol, old_name, new_name)); if (strcmp(old_name, new_name) == 0) return; |