aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/backend/ebook/e-destination.c
diff options
context:
space:
mode:
authorJon Trowbridge <trow@src.gnome.org>2001-10-12 11:50:16 +0800
committerJon Trowbridge <trow@src.gnome.org>2001-10-12 11:50:16 +0800
commitbe75a3f952b826db123eb8a4e5e91d6164b96dd1 (patch)
treee3e88e03fcb58da88c7168e2b22661a598c48483 /addressbook/backend/ebook/e-destination.c
parent1b235d03d55ef422e933b04401f991d3aa56d021 (diff)
downloadgsoc2013-evolution-be75a3f952b826db123eb8a4e5e91d6164b96dd1.tar
gsoc2013-evolution-be75a3f952b826db123eb8a4e5e91d6164b96dd1.tar.gz
gsoc2013-evolution-be75a3f952b826db123eb8a4e5e91d6164b96dd1.tar.bz2
gsoc2013-evolution-be75a3f952b826db123eb8a4e5e91d6164b96dd1.tar.lz
gsoc2013-evolution-be75a3f952b826db123eb8a4e5e91d6164b96dd1.tar.xz
gsoc2013-evolution-be75a3f952b826db123eb8a4e5e91d6164b96dd1.tar.zst
gsoc2013-evolution-be75a3f952b826db123eb8a4e5e91d6164b96dd1.zip
On second thought, that should be a less-than-or-equal... :)
svn path=/trunk/; revision=13612
Diffstat (limited to 'addressbook/backend/ebook/e-destination.c')
-rw-r--r--addressbook/backend/ebook/e-destination.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/addressbook/backend/ebook/e-destination.c b/addressbook/backend/ebook/e-destination.c
index c3bf4de5ab..155322fec2 100644
--- a/addressbook/backend/ebook/e-destination.c
+++ b/addressbook/backend/ebook/e-destination.c
@@ -1025,7 +1025,7 @@ e_destination_reverting_is_a_good_idea (EDestination *dest)
len = g_utf8_strlen (textrep, -1);
old_len = g_utf8_strlen (dest->priv->old_textrep, -1);
- if (len < old_len/2)
+ if (len <= old_len/2)
return FALSE;
return TRUE;