diff options
author | Not Zed <NotZed@Ximian.com> | 2002-04-02 08:43:37 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2002-04-02 08:43:37 +0800 |
commit | b19dc48b6dff8b1f47c9f56bf4c5ed0f612f0ae8 (patch) | |
tree | 40a3e6f093e3d74ba1c953424aba01ae48853cfe /camel/providers | |
parent | 86c9aafb56e8e555871d5fe713aa33d65cf08fc4 (diff) | |
download | gsoc2013-evolution-b19dc48b6dff8b1f47c9f56bf4c5ed0f612f0ae8.tar.gz gsoc2013-evolution-b19dc48b6dff8b1f47c9f56bf4c5ed0f612f0ae8.tar.zst gsoc2013-evolution-b19dc48b6dff8b1f47c9f56bf4c5ed0f612f0ae8.zip |
Put back in the exception setup stuff i disabled for debugging.
2002-04-02 Not Zed <NotZed@Ximian.com>
* providers/imap/camel-imap-store.c (imap_keepalive): Put back in
the exception setup stuff i disabled for debugging.
svn path=/trunk/; revision=16320
Diffstat (limited to 'camel/providers')
-rw-r--r-- | camel/providers/imap/camel-imap-store.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/camel/providers/imap/camel-imap-store.c b/camel/providers/imap/camel-imap-store.c index 2c2d051420..b3d98db759 100644 --- a/camel/providers/imap/camel-imap-store.c +++ b/camel/providers/imap/camel-imap-store.c @@ -1851,11 +1851,10 @@ imap_keepalive (CamelRemoteStore *store) /* Note: the idea here is to sync the flags of our currently selected folder if there have been changes... */ - ex = NULL; - /*ex = camel_exception_new();*/ + ex = camel_exception_new(); if (imap_store->current_folder && folder_flags_have_changed (imap_store->current_folder)) { camel_folder_sync (imap_store->current_folder, FALSE, ex); - /*camel_exception_clear(ex);*/ + camel_exception_clear(ex); } /* ...but we also want to NOOP so that we get an untagged response. */ @@ -1867,5 +1866,5 @@ imap_keepalive (CamelRemoteStore *store) CAMEL_IMAP_STORE_UNLOCK (store, command_lock); - /*camel_exception_free(ex);*/ + camel_exception_free(ex); } |