diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2001-09-05 04:36:48 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2001-09-05 04:36:48 +0800 |
commit | 98b0ce35e99ae6d6c0fffc791a98424ee9f40aca (patch) | |
tree | 3e06ba94980e215040979d2e018438f61ec414f1 | |
parent | e35bc1ef622c86d9022afd90ed35d3e644dead8c (diff) | |
download | gsoc2013-evolution-98b0ce35e99ae6d6c0fffc791a98424ee9f40aca.tar gsoc2013-evolution-98b0ce35e99ae6d6c0fffc791a98424ee9f40aca.tar.gz gsoc2013-evolution-98b0ce35e99ae6d6c0fffc791a98424ee9f40aca.tar.bz2 gsoc2013-evolution-98b0ce35e99ae6d6c0fffc791a98424ee9f40aca.tar.lz gsoc2013-evolution-98b0ce35e99ae6d6c0fffc791a98424ee9f40aca.tar.xz gsoc2013-evolution-98b0ce35e99ae6d6c0fffc791a98424ee9f40aca.tar.zst gsoc2013-evolution-98b0ce35e99ae6d6c0fffc791a98424ee9f40aca.zip |
Too late to sync the folders here... if this is gonna happen at all it
2001-09-04 Jeffrey Stedfast <fejj@ximian.com>
* camel-remote-store.c (remote_disconnect): Too late to sync the
folders here... if this is gonna happen at all it should be done
in the provider.
svn path=/trunk/; revision=12596
-rw-r--r-- | camel/ChangeLog | 4 | ||||
-rw-r--r-- | camel/camel-remote-store.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog index 32489cb47a..b6be181381 100644 --- a/camel/ChangeLog +++ b/camel/ChangeLog @@ -1,5 +1,9 @@ 2001-09-04 Jeffrey Stedfast <fejj@ximian.com> + * camel-remote-store.c (remote_disconnect): Too late to sync the + folders here... if this is gonna happen at all it should be done + in the provider. + * camel-service.c (camel_service_finalize): Do a clean disconnect. 2001-08-30 Jeffrey Stedfast <fejj@ximian.com> diff --git a/camel/camel-remote-store.c b/camel/camel-remote-store.c index dffea34808..0bd78cf45c 100644 --- a/camel/camel-remote-store.c +++ b/camel/camel-remote-store.c @@ -302,10 +302,6 @@ remote_disconnect (CamelService *service, gboolean clean, CamelException *ex) store->timeout_id = 0; } - if (clean) - /* sync all folders */ - g_hash_table_foreach (CAMEL_STORE (store)->folders, sync_remote_folder, ex); - if (!CAMEL_SERVICE_CLASS (store_class)->disconnect (service, clean, ex)) return FALSE; |