diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2003-09-22 23:00:59 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2003-09-22 23:00:59 +0800 |
commit | 4ba952503e20bb6a2ced1e4f64b7df184333a8f6 (patch) | |
tree | 7bbc5ebba8ef2400b7fe48da708c86fa90817301 /camel/providers/imapp/camel-imapp-folder.c | |
parent | c5a06d54f661243c0775dd3d40e173e661616c1b (diff) | |
download | gsoc2013-evolution-4ba952503e20bb6a2ced1e4f64b7df184333a8f6.tar gsoc2013-evolution-4ba952503e20bb6a2ced1e4f64b7df184333a8f6.tar.gz gsoc2013-evolution-4ba952503e20bb6a2ced1e4f64b7df184333a8f6.tar.bz2 gsoc2013-evolution-4ba952503e20bb6a2ced1e4f64b7df184333a8f6.tar.lz gsoc2013-evolution-4ba952503e20bb6a2ced1e4f64b7df184333a8f6.tar.xz gsoc2013-evolution-4ba952503e20bb6a2ced1e4f64b7df184333a8f6.tar.zst gsoc2013-evolution-4ba952503e20bb6a2ced1e4f64b7df184333a8f6.zip |
Fix the code that creates a new ssl stream to pass the correct arguments
2003-09-22 Jeffrey Stedfast <fejj@ximian.com>
* providers/nntp/camel-nntp-store.c (connect_to_server): Fix the
code that creates a new ssl stream to pass the correct arguments
and the proper flags.
* providers/imapp/camel-imapp-folder.c (imap_sync): Cast the
CamelFolder to a CamelIMAPPFolder to hush some compiler warnings.
* camel-mime-utils.h: Define a struct _CamelContentDisposition
(allows the imapp code to compile)
* providers/imapp/camel-imapp-driver.c: #include <string.h>
svn path=/trunk/; revision=22635
Diffstat (limited to 'camel/providers/imapp/camel-imapp-folder.c')
-rw-r--r-- | camel/providers/imapp/camel-imapp-folder.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/camel/providers/imapp/camel-imapp-folder.c b/camel/providers/imapp/camel-imapp-folder.c index 19f3795056..967ab541f6 100644 --- a/camel/providers/imapp/camel-imapp-folder.c +++ b/camel/providers/imapp/camel-imapp-folder.c @@ -34,6 +34,7 @@ #include "camel/camel-operation.h" #include "camel/camel-data-cache.h" #include "camel/camel-session.h" +#include "camel/camel-file-utils.h" #include "camel-imapp-store.h" #include "camel-imapp-folder.h" @@ -177,7 +178,7 @@ imap_refresh_info (CamelFolder *folder, CamelException *ex) static void imap_sync (CamelFolder *folder, gboolean expunge, CamelException *ex) { - camel_imapp_driver_sync(((CamelIMAPPStore *)(folder->parent_store))->driver, expunge, folder); + camel_imapp_driver_sync(((CamelIMAPPStore *)(folder->parent_store))->driver, expunge, (CamelIMAPPFolder *) folder); } static CamelMimeMessage * |