aboutsummaryrefslogtreecommitdiffstats
path: root/camel/providers
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2001-07-07 00:52:44 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2001-07-07 00:52:44 +0800
commit15aeda78aa5c7edd4e4c30a4f728290126b2e0bd (patch)
tree5c420da0d3b3c083092a915a422975e2a71f04e7 /camel/providers
parent40c22b25f1e318b405bf2f995d2636de5c731959 (diff)
downloadgsoc2013-evolution-15aeda78aa5c7edd4e4c30a4f728290126b2e0bd.tar
gsoc2013-evolution-15aeda78aa5c7edd4e4c30a4f728290126b2e0bd.tar.gz
gsoc2013-evolution-15aeda78aa5c7edd4e4c30a4f728290126b2e0bd.tar.bz2
gsoc2013-evolution-15aeda78aa5c7edd4e4c30a4f728290126b2e0bd.tar.lz
gsoc2013-evolution-15aeda78aa5c7edd4e4c30a4f728290126b2e0bd.tar.xz
gsoc2013-evolution-15aeda78aa5c7edd4e4c30a4f728290126b2e0bd.tar.zst
gsoc2013-evolution-15aeda78aa5c7edd4e4c30a4f728290126b2e0bd.zip
Set the pipe fd's to nonblocking.
2001-07-06 Jeffrey Stedfast <fejj@ximian.com> * camel-pgp-context.c (crypto_exec_with_passwd): Set the pipe fd's to nonblocking. svn path=/trunk/; revision=10847
Diffstat (limited to 'camel/providers')
-rw-r--r--camel/providers/imap/camel-imap-command.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/camel/providers/imap/camel-imap-command.c b/camel/providers/imap/camel-imap-command.c
index 8c5532c612..6f19e579e4 100644
--- a/camel/providers/imap/camel-imap-command.c
+++ b/camel/providers/imap/camel-imap-command.c
@@ -286,9 +286,9 @@ imap_read_untagged (CamelImapStore *store, char *line, CamelException *ex)
str->str + 1, length);
if (nread == -1) {
if (errno == EINTR)
- camel_exception_set(ex, CAMEL_EXCEPTION_USER_CANCEL, _("Operation cancelled"));
+ camel_exception_set (ex, CAMEL_EXCEPTION_USER_CANCEL, _("Operation cancelled"));
else
- camel_exception_set(ex, CAMEL_EXCEPTION_SERVICE_UNAVAILABLE, strerror(errno));
+ camel_exception_set (ex, CAMEL_EXCEPTION_SERVICE_UNAVAILABLE, strerror(errno));
camel_service_disconnect (CAMEL_SERVICE (store), FALSE, NULL);
goto lose;
}