diff options
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); |