diff options
author | Sushma Rai <rsushma@src.gnome.org> | 2005-09-30 21:26:29 +0800 |
---|---|---|
committer | Sushma Rai <rsushma@src.gnome.org> | 2005-09-30 21:26:29 +0800 |
commit | 088e14f6e74dcae2ea14ed11e4a8a4c09e29b260 (patch) | |
tree | b919aefb6ddb5a935b22104006843640ca28e407 /addressbook/gui | |
parent | 4537ea47ca77fbaeeae42233e695accec83b8265 (diff) | |
download | gsoc2013-evolution-088e14f6e74dcae2ea14ed11e4a8a4c09e29b260.tar.gz 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')
-rw-r--r-- | addressbook/gui/merging/eab-contact-compare.c | 2 |
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. */ |