diff options
author | Peter Williams <peterw@src.gnome.org> | 2000-08-16 03:10:45 +0800 |
---|---|---|
committer | Peter Williams <peterw@src.gnome.org> | 2000-08-16 03:10:45 +0800 |
commit | e3b786b5cf25c44e31d21019e7805b7674a33967 (patch) | |
tree | f0078615d455a4c920ff16a7bcc1337aec5a3c23 /camel | |
parent | 8e32b41a50e99502fb22c26c0b5de575fecc99b4 (diff) | |
download | gsoc2013-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')
-rw-r--r-- | camel/ChangeLog | 4 | ||||
-rw-r--r-- | camel/providers/imap/camel-imap-folder.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog index 7342d2220a..713ad489db 100644 --- a/camel/ChangeLog +++ b/camel/ChangeLog @@ -1,3 +1,7 @@ +2000-08-15 Peter Williams <peterw@helixcode.com> + + * providers/imap/camel-imap-folder.c (imap_copy_message_to): Typo fix. + 2000-08-14 Peter Williams <peterw@helixcode.com> * camel-folder-search.c (search_get_sent_date): New search function; 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); |