From 088e14f6e74dcae2ea14ed11e4a8a4c09e29b260 Mon Sep 17 00:00:00 2001 From: Sushma Rai Date: Fri, 30 Sep 2005 13:26:29 +0000 Subject: Not allowing partial comparisons while finding duplicate entries. Fixes #315034. Patch submitted by "Devashish Sharma ". svn path=/trunk/; revision=30443 --- addressbook/gui/merging/eab-contact-compare.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'addressbook/gui') 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. */ -- cgit v1.2.3