aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/backend/ebook/e-destination.c
diff options
context:
space:
mode:
Diffstat (limited to 'addressbook/backend/ebook/e-destination.c')
-rw-r--r--addressbook/backend/ebook/e-destination.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/addressbook/backend/ebook/e-destination.c b/addressbook/backend/ebook/e-destination.c
index 508802b823..b82e616601 100644
--- a/addressbook/backend/ebook/e-destination.c
+++ b/addressbook/backend/ebook/e-destination.c
@@ -331,11 +331,12 @@ nonempty (const gchar *s)
gboolean
e_destination_is_empty (const EDestination *dest)
+
{
struct _EDestinationPrivate *p;
g_return_val_if_fail (E_IS_DESTINATION (dest), TRUE);
p = dest->priv;
-
+
return !(p->card != NULL
|| (p->book_uri && *p->book_uri)
|| (p->card_uid && *p->card_uid)
@@ -389,10 +390,10 @@ e_destination_equal (const EDestination *a, const EDestination *b)
/* Just in case name returns NULL */
na = e_destination_get_name (a);
nb = e_destination_get_name (b);
- if ((na || nb) && !(na && nb && !strcmp (na, nb)))
+ if ((na || nb) && !(na && nb && ! g_utf8_strcasecmp (na, nb)))
return FALSE;
- if (!strcmp (e_destination_get_email (a), e_destination_get_email (b)))
+ if (!g_strcasecmp (e_destination_get_email (a), e_destination_get_email (b)))
return TRUE;
return FALSE;