aboutsummaryrefslogtreecommitdiffstats
path: root/camel/providers
diff options
context:
space:
mode:
authorPeter Williams <peterw@src.gnome.org>2000-08-16 03:10:45 +0800
committerPeter Williams <peterw@src.gnome.org>2000-08-16 03:10:45 +0800
commite3b786b5cf25c44e31d21019e7805b7674a33967 (patch)
treef0078615d455a4c920ff16a7bcc1337aec5a3c23 /camel/providers
parent8e32b41a50e99502fb22c26c0b5de575fecc99b4 (diff)
downloadgsoc2013-evolution-e3b786b5cf25c44e31d21019e7805b7674a33967.tar
gsoc2013-evolution-e3b786b5cf25c44e31d21019e7805b7674a33967.tar.gz
gsoc2013-evolution-e3b786b5cf25c44e31d21019e7805b7674a33967.tar.bz2
gsoc2013-evolution-e3b786b5cf25c44e31d21019e7805b7674a33967.tar.lz
gsoc2013-evolution-e3b786b5cf25c44e31d21019e7805b7674a33967.tar.xz
gsoc2013-evolution-e3b786b5cf25c44e31d21019e7805b7674a33967.tar.zst
gsoc2013-evolution-e3b786b5cf25c44e31d21019e7805b7674a33967.zip
Add support for copying messages
svn path=/trunk/; revision=4845
Diffstat (limited to 'camel/providers')
-rw-r--r--camel/providers/imap/camel-imap-folder.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/camel/providers/imap/camel-imap-folder.c b/camel/providers/imap/camel-imap-folder.c
index a0735313f2..84a0805727 100644
--- a/camel/providers/imap/camel-imap-folder.c
+++ b/camel/providers/imap/camel-imap-folder.c
@@ -631,7 +631,7 @@ imap_copy_message_to (CamelFolder *source, const char *uid, CamelFolder *destina
char *result, *folder_path, *dir_sep;
int status;
- dir_sep = CAMEL_IMAP_STORE (source->parent_folder)->dir_sep;
+ dir_sep = CAMEL_IMAP_STORE (source->parent_store)->dir_sep;
if (url && url->path && *(url->path + 1) && strcmp (destination->full_name, "INBOX"))
folder_path = g_strdup_printf ("%s%s%s", url->path + 1, dir_sep, destination->full_name);