From be75a3f952b826db123eb8a4e5e91d6164b96dd1 Mon Sep 17 00:00:00 2001 From: Jon Trowbridge Date: Fri, 12 Oct 2001 03:50:16 +0000 Subject: On second thought, that should be a less-than-or-equal... :) svn path=/trunk/; revision=13612 --- addressbook/backend/ebook/e-destination.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'addressbook/backend') 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; -- cgit v1.2.3