summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Menzel <paulepanter@users.sourceforge.net>2013-01-04 07:48:37 -0500
committerMatthew Barnes <mbarnes@redhat.com>2013-01-04 07:50:57 -0500
commite9df229642a1869d906b33eb676eb7cd7de34ad4 (patch)
treeb04df222625ba17390229f29b56da67f02dd5f7d
parentcfbcefb1914dbac3c093ff1fc226a88c31d33236 (diff)
downloadevolution-data-server-e9df229642a1869d906b33eb676eb7cd7de34ad4.tar.gz
Bug 691124 - [imap] Typo in sort_uid_cmp()
-rw-r--r--camel/providers/imap/camel-imap-summary.c2
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 2fe5a9630..3f2396eb4 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;
}
/**