aboutsummaryrefslogtreecommitdiffstats
path: root/camel/providers/imap/camel-imap-store.h
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@helixcode.com>2000-07-24 09:37:43 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2000-07-24 09:37:43 +0800
commite9112cf496ef8dd380ac030624b1fbda2b0d8c3d (patch)
tree25ceaf3cc7c09434ca6830a3def83202258d4867 /camel/providers/imap/camel-imap-store.h
parent6095a951335a4edc3d9ed8f9e31913f8413decfa (diff)
downloadgsoc2013-evolution-e9112cf496ef8dd380ac030624b1fbda2b0d8c3d.tar
gsoc2013-evolution-e9112cf496ef8dd380ac030624b1fbda2b0d8c3d.tar.gz
gsoc2013-evolution-e9112cf496ef8dd380ac030624b1fbda2b0d8c3d.tar.bz2
gsoc2013-evolution-e9112cf496ef8dd380ac030624b1fbda2b0d8c3d.tar.lz
gsoc2013-evolution-e9112cf496ef8dd380ac030624b1fbda2b0d8c3d.tar.xz
gsoc2013-evolution-e9112cf496ef8dd380ac030624b1fbda2b0d8c3d.tar.zst
gsoc2013-evolution-e9112cf496ef8dd380ac030624b1fbda2b0d8c3d.zip
Made it a little more forgiving. Also set current_folder to NULL as there
2000-07-23 Jeffrey Stedfast <fejj@helixcode.com> * providers/imap/camel-imap-store.c (imap_disconnect): Made it a little more forgiving. Also set current_folder to NULL as there is no selected folder after a disconnect. (stream_is_alive): Detects whether or not a socket is "alive" (camel_imap_command_extended): Use stream_is_alive() to aid in the detection of a disconnected state. svn path=/trunk/; revision=4288
Diffstat (limited to 'camel/providers/imap/camel-imap-store.h')
-rw-r--r--camel/providers/imap/camel-imap-store.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/camel/providers/imap/camel-imap-store.h b/camel/providers/imap/camel-imap-store.h
index b38ed769c9..aeabdaa96d 100644
--- a/camel/providers/imap/camel-imap-store.h
+++ b/camel/providers/imap/camel-imap-store.h
@@ -68,7 +68,7 @@ void camel_imap_store_close (CamelImapStore *store, gboolean expunge, CamelExcep
/* support functions */
-enum { CAMEL_IMAP_OK, CAMEL_IMAP_NO, CAMEL_IMAP_BAD, CAMEL_IMAP_FAIL };
+enum { CAMEL_IMAP_OK = 0, CAMEL_IMAP_NO, CAMEL_IMAP_BAD, CAMEL_IMAP_FAIL };
gint camel_imap_command (CamelImapStore *store, CamelFolder *folder, char **ret, char *fmt, ...);
gint camel_imap_command_extended (CamelImapStore *store, CamelFolder *folder, char **ret, char *fmt, ...);