aboutsummaryrefslogtreecommitdiffstats
path: root/mail/em-utils.c
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2011-06-28 00:04:57 +0800
committerMilan Crha <mcrha@redhat.com>2011-06-28 00:04:57 +0800
commit566d861915da77e93b097a927a79f0130de8c535 (patch)
tree62226a7396bd10080d12f0d69262251aa45e34c2 /mail/em-utils.c
parent05933ef483635b84514eb285d4d839b87c3b3afb (diff)
downloadgsoc2013-evolution-566d861915da77e93b097a927a79f0130de8c535.tar
gsoc2013-evolution-566d861915da77e93b097a927a79f0130de8c535.tar.gz
gsoc2013-evolution-566d861915da77e93b097a927a79f0130de8c535.tar.bz2
gsoc2013-evolution-566d861915da77e93b097a927a79f0130de8c535.tar.lz
gsoc2013-evolution-566d861915da77e93b097a927a79f0130de8c535.tar.xz
gsoc2013-evolution-566d861915da77e93b097a927a79f0130de8c535.tar.zst
gsoc2013-evolution-566d861915da77e93b097a927a79f0130de8c535.zip
Check for cancelled GIO operation error code too
Diffstat (limited to 'mail/em-utils.c')
-rw-r--r--mail/em-utils.c11
1 files changed, 7 insertions, 4 deletions
diff --git a/mail/em-utils.c b/mail/em-utils.c
index db6bd958f9..3239b87214 100644
--- a/mail/em-utils.c
+++ b/mail/em-utils.c
@@ -1654,7 +1654,8 @@ search_address_in_addressbooks (const gchar *address,
book_client = e_book_client_new (source, &err);
if (book_client == NULL) {
- if (err && g_error_matches (err, E_CLIENT_ERROR, E_CLIENT_ERROR_CANCELLED)) {
+ if (err && (g_error_matches (err, E_CLIENT_ERROR, E_CLIENT_ERROR_CANCELLED) ||
+ g_error_matches (err, G_IO_ERROR, G_IO_ERROR_CANCELLED))) {
stop = TRUE;
} else if (err) {
gchar *source_uid;
@@ -1677,7 +1678,8 @@ search_address_in_addressbooks (const gchar *address,
g_object_unref (book_client);
book_client = NULL;
- if (err && g_error_matches (err, E_CLIENT_ERROR, E_CLIENT_ERROR_CANCELLED)) {
+ if (err && (g_error_matches (err, E_CLIENT_ERROR, E_CLIENT_ERROR_CANCELLED) ||
+ g_error_matches (err, G_IO_ERROR, G_IO_ERROR_CANCELLED))) {
stop = TRUE;
} else if (err) {
gchar *source_uid;
@@ -1724,8 +1726,9 @@ search_address_in_addressbooks (const gchar *address,
g_slist_free (contacts);
}
} else if (book_client) {
- stop = stop || (err && g_error_matches (
- err, E_CLIENT_ERROR, E_CLIENT_ERROR_CANCELLED));
+ stop = stop || (err &&
+ (g_error_matches (err, E_CLIENT_ERROR, E_CLIENT_ERROR_CANCELLED) ||
+ g_error_matches (err, G_IO_ERROR, G_IO_ERROR_CANCELLED)));
if (err && !stop) {
gchar *source_uid = g_strdup (e_source_peek_uid (source));