diff options
author | Jon Trowbridge <trow@src.gnome.org> | 2001-10-12 11:50:16 +0800 |
---|---|---|
committer | Jon Trowbridge <trow@src.gnome.org> | 2001-10-12 11:50:16 +0800 |
commit | be75a3f952b826db123eb8a4e5e91d6164b96dd1 (patch) | |
tree | e3e88e03fcb58da88c7168e2b22661a598c48483 /addressbook | |
parent | 1b235d03d55ef422e933b04401f991d3aa56d021 (diff) | |
download | gsoc2013-evolution-be75a3f952b826db123eb8a4e5e91d6164b96dd1.tar.gz 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')
-rw-r--r-- | addressbook/backend/ebook/e-destination.c | 2 |
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; |