aboutsummaryrefslogtreecommitdiffstats
path: root/camel/providers
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2004-06-11 09:36:16 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2004-06-11 09:36:16 +0800
commitf581a61e4a10320915a766530b9eb01ea4ee63ab (patch)
tree79822a29b0cca968c7ea80dd7e6f0f9b6ecb42f6 /camel/providers
parent8c6827202a5aa5fde59b3734afa01b810bbf4cc2 (diff)
downloadgsoc2013-evolution-f581a61e4a10320915a766530b9eb01ea4ee63ab.tar
gsoc2013-evolution-f581a61e4a10320915a766530b9eb01ea4ee63ab.tar.gz
gsoc2013-evolution-f581a61e4a10320915a766530b9eb01ea4ee63ab.tar.bz2
gsoc2013-evolution-f581a61e4a10320915a766530b9eb01ea4ee63ab.tar.lz
gsoc2013-evolution-f581a61e4a10320915a766530b9eb01ea4ee63ab.tar.xz
gsoc2013-evolution-f581a61e4a10320915a766530b9eb01ea4ee63ab.tar.zst
gsoc2013-evolution-f581a61e4a10320915a766530b9eb01ea4ee63ab.zip
Don't always try and parse a RESP-CODE in the BYE case as the RESP-CODE is
2004-06-10 Jeffrey Stedfast <fejj@ximian.com> * providers/imap4/camel-imap4-engine.c (camel_imap4_engine_handle_untagged_1): Don't always try and parse a RESP-CODE in the BYE case as the RESP-CODE is optional. svn path=/trunk/; revision=26297
Diffstat (limited to 'camel/providers')
-rw-r--r--camel/providers/imap4/camel-imap4-engine.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/camel/providers/imap4/camel-imap4-engine.c b/camel/providers/imap4/camel-imap4-engine.c
index 059c7dbe22..bd5ebfff07 100644
--- a/camel/providers/imap4/camel-imap4-engine.c
+++ b/camel/providers/imap4/camel-imap4-engine.c
@@ -978,7 +978,15 @@ camel_imap4_engine_handle_untagged_1 (CamelIMAP4Engine *engine, camel_imap4_toke
if (token->token == CAMEL_IMAP4_TOKEN_ATOM) {
if (!strcmp ("BYE", token->v.atom)) {
/* we don't care if we fail here, either way we've been disconnected */
- camel_imap4_engine_parse_resp_code (engine, NULL);
+ if (camel_imap4_engine_next_token (engine, token, NULL) == 0) {
+ if (token->token == '[') {
+ camel_imap4_stream_unget_token (engine->istream, token);
+ camel_imap4_engine_parse_resp_code (engine, NULL);
+ } else {
+ camel_imap4_engine_line (engine, NULL, NULL, NULL);
+ }
+ }
+
engine->state = CAMEL_IMAP4_ENGINE_DISCONNECTED;
/* FIXME: emit a "disconnected" signal for our Store?