aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui/merging/eab-contact-compare.c
diff options
context:
space:
mode:
authorSushma Rai <rsushma@src.gnome.org>2005-09-30 21:26:29 +0800
committerSushma Rai <rsushma@src.gnome.org>2005-09-30 21:26:29 +0800
commit088e14f6e74dcae2ea14ed11e4a8a4c09e29b260 (patch)
treeb919aefb6ddb5a935b22104006843640ca28e407 /addressbook/gui/merging/eab-contact-compare.c
parent4537ea47ca77fbaeeae42233e695accec83b8265 (diff)
downloadgsoc2013-evolution-088e14f6e74dcae2ea14ed11e4a8a4c09e29b260.tar
gsoc2013-evolution-088e14f6e74dcae2ea14ed11e4a8a4c09e29b260.tar.gz
gsoc2013-evolution-088e14f6e74dcae2ea14ed11e4a8a4c09e29b260.tar.bz2
gsoc2013-evolution-088e14f6e74dcae2ea14ed11e4a8a4c09e29b260.tar.lz
gsoc2013-evolution-088e14f6e74dcae2ea14ed11e4a8a4c09e29b260.tar.xz
gsoc2013-evolution-088e14f6e74dcae2ea14ed11e4a8a4c09e29b260.tar.zst
gsoc2013-evolution-088e14f6e74dcae2ea14ed11e4a8a4c09e29b260.zip
Not allowing partial comparisons while finding duplicate entries.
Fixes #315034. Patch submitted by "Devashish Sharma <sdevashish@novell.com>". svn path=/trunk/; revision=30443
Diffstat (limited to 'addressbook/gui/merging/eab-contact-compare.c')
-rw-r--r--addressbook/gui/merging/eab-contact-compare.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/addressbook/gui/merging/eab-contact-compare.c b/addressbook/gui/merging/eab-contact-compare.c
index 0c28684f23..60a95c59f3 100644
--- a/addressbook/gui/merging/eab-contact-compare.c
+++ b/addressbook/gui/merging/eab-contact-compare.c
@@ -115,7 +115,7 @@ name_fragment_match_with_synonyms (const gchar *a, const gchar *b, gboolean stri
if (!(a && b && *a && *b))
return FALSE;
- if (name_fragment_match (a, b, strict))
+ if(!e_utf8_casefold_collate (a, b))
return TRUE;
/* Check for nicknames. Yes, the linear search blows. */