diff options
author | Jeffrey Stedfast <fejj@helixcode.com> | 2000-08-13 06:56:55 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2000-08-13 06:56:55 +0800 |
commit | 031bffff9cf122ac2014d364c249d7e894929bbc (patch) | |
tree | 08d63e6ca24ce7e9fc35ab4bc83d731abc539d07 /camel/providers/imap/camel-imap-folder.c | |
parent | 8b3a32b908b9e0bb6029ea07f0089f979a1e5974 (diff) | |
download | gsoc2013-evolution-031bffff9cf122ac2014d364c249d7e894929bbc.tar.gz gsoc2013-evolution-031bffff9cf122ac2014d364c249d7e894929bbc.tar.zst gsoc2013-evolution-031bffff9cf122ac2014d364c249d7e894929bbc.zip |
Now takes a char * parameter rather than a stream
2000-08-12 Jeffrey Stedfast <fejj@helixcode.com>
* providers/imap/camel-imap-store.c
(camel_imap_command_continuation): Now takes a char * parameter
rather than a stream
(camel_imap_command_continuation_with_stream): Same function as
above but takes a stream parameter instead
* providers/imap/camel-imap-folder.c (imap_append_message): Use
camel_imap_command_continuation_with_stream
svn path=/trunk/; revision=4786
Diffstat (limited to 'camel/providers/imap/camel-imap-folder.c')
-rw-r--r-- | camel/providers/imap/camel-imap-folder.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/camel/providers/imap/camel-imap-folder.c b/camel/providers/imap/camel-imap-folder.c index 5a157a037c..89604b5cac 100644 --- a/camel/providers/imap/camel-imap-folder.c +++ b/camel/providers/imap/camel-imap-folder.c @@ -601,8 +601,8 @@ imap_append_message (CamelFolder *folder, CamelMimeMessage *message, const Camel g_free (folder_path); /* send the rest of our data - the mime message */ - status = camel_imap_command_continuation (CAMEL_IMAP_STORE (folder->parent_store), - &result, cmdid, memstream); + status = camel_imap_command_continuation_with_stream (CAMEL_IMAP_STORE (folder->parent_store), + &result, cmdid, memstream); if (status != CAMEL_IMAP_OK) { CamelService *service = CAMEL_SERVICE (folder->parent_store); |