[evolution-data-server/gnome-3-6] Bug 691124 - [imap] Typo in sort_uid_cmp()
- From: Matthew Barnes <mbarnes src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [evolution-data-server/gnome-3-6] Bug 691124 - [imap] Typo in sort_uid_cmp()
- Date: Fri, 4 Jan 2013 12:51:06 +0000 (UTC)
commit e9df229642a1869d906b33eb676eb7cd7de34ad4
Author: Paul Menzel <paulepanter users sourceforge net>
Date: Fri Jan 4 07:48:37 2013 -0500
Bug 691124 - [imap] Typo in sort_uid_cmp()
camel/providers/imap/camel-imap-summary.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/camel/providers/imap/camel-imap-summary.c b/camel/providers/imap/camel-imap-summary.c
index 2fe5a96..3f2396e 100644
--- a/camel/providers/imap/camel-imap-summary.c
+++ b/camel/providers/imap/camel-imap-summary.c
@@ -111,7 +111,7 @@ sort_uid_cmp (gpointer enc,
a1 = strtoul (sa1, NULL, 10);
a2 = strtoul (sa2, NULL, 10);
- return (a1 < a1) ? -1 : (a1 > a2) ? 1 : 0;
+ return (a1 < a2) ? -1 : (a1 > a2) ? 1 : 0;
}
/**
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]