aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-service.c
diff options
context:
space:
mode:
authorNot Zed <NotZed@Ximian.com>2001-07-23 10:35:21 +0800
committerMichael Zucci <zucchi@src.gnome.org>2001-07-23 10:35:21 +0800
commit833bb47399de0d0509da1cf4fa0b993702c39e87 (patch)
tree64f50a868cb59b311b696d13ea59d85f0a7ffd1b /camel/camel-service.c
parent97cc1d57adcdefb5b63a704f42f692e3cffb4014 (diff)
downloadgsoc2013-evolution-833bb47399de0d0509da1cf4fa0b993702c39e87.tar
gsoc2013-evolution-833bb47399de0d0509da1cf4fa0b993702c39e87.tar.gz
gsoc2013-evolution-833bb47399de0d0509da1cf4fa0b993702c39e87.tar.bz2
gsoc2013-evolution-833bb47399de0d0509da1cf4fa0b993702c39e87.tar.lz
gsoc2013-evolution-833bb47399de0d0509da1cf4fa0b993702c39e87.tar.xz
gsoc2013-evolution-833bb47399de0d0509da1cf4fa0b993702c39e87.tar.zst
gsoc2013-evolution-833bb47399de0d0509da1cf4fa0b993702c39e87.zip
Added some operation progress reporting. Actual data transfer is 'tricky'
2001-07-23 Not Zed <NotZed@Ximian.com> * providers/smtp/camel-smtp-transport.c (smtp_auth, smtp_helo, send_to): Added some operation progress reporting. Actual data transfer is 'tricky' because of the layers used. (smtp_auth): Instead of checking exception_is_set, use challenge==NULL to test if sasl_challenge_base64 failed. * providers/local/camel-mbox-summary.c (mbox_summary_sync): Remove peters changes below and put in a better fix. These functions already return -1 on error, just use that, and not worry about building our own exception redundantly. * camel-service.c (camel_get_host_byname): Turn the progress into a transient event. svn path=/trunk/; revision=11301
Diffstat (limited to 'camel/camel-service.c')
-rw-r--r--camel/camel-service.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/camel/camel-service.c b/camel/camel-service.c
index b052e1ff7b..12e5016766 100644
--- a/camel/camel-service.c
+++ b/camel/camel-service.c
@@ -545,7 +545,7 @@ struct hostent *camel_get_host_byname(const char *name, CamelException *ex)
return NULL;
}
- camel_operation_start(NULL, _("Resolving: %s"), name);
+ camel_operation_start_transient(NULL, _("Resolving: %s"), name);
msg = g_malloc0(sizeof(*msg));
msg->hostbuflen = 1024;