diff options
author | Not Zed <NotZed@Ximian.com> | 2004-06-03 19:30:52 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2004-06-03 19:30:52 +0800 |
commit | 74fb7cd73be2837f17529a631ebc1d79b23ea696 (patch) | |
tree | ba624a82262b18b30e8b7445a330b9cae60eca07 /camel/providers | |
parent | c691f3366efd43a8ea4a8cc442d75fe90848acdc (diff) | |
download | gsoc2013-evolution-74fb7cd73be2837f17529a631ebc1d79b23ea696.tar.gz gsoc2013-evolution-74fb7cd73be2837f17529a631ebc1d79b23ea696.tar.zst gsoc2013-evolution-74fb7cd73be2837f17529a631ebc1d79b23ea696.zip |
disconnect if we get an io error or user cancellation.
2004-06-03 Not Zed <NotZed@Ximian.com>
* providers/nntp/camel-nntp-store.c (camel_nntp_command):
disconnect if we get an io error or user cancellation.
svn path=/trunk/; revision=26166
Diffstat (limited to 'camel/providers')
-rw-r--r-- | camel/providers/nntp/camel-nntp-store.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/camel/providers/nntp/camel-nntp-store.c b/camel/providers/nntp/camel-nntp-store.c index a36a69634f..57894efc0c 100644 --- a/camel/providers/nntp/camel-nntp-store.c +++ b/camel/providers/nntp/camel-nntp-store.c @@ -1311,6 +1311,7 @@ camel_nntp_command (CamelNNTPStore *store, CamelException *ex, CamelNNTPFolder * camel_service_disconnect (CAMEL_SERVICE (store), FALSE, NULL); continue; case -1: /* i/o error */ + camel_service_disconnect (CAMEL_SERVICE (store), FALSE, NULL); if (camel_exception_get_id(ex) == CAMEL_EXCEPTION_USER_CANCEL) return -1; camel_exception_clear(ex); |