[evolution-data-server] Fix typos in imapx_list_response_parse_extended_item().
- From: Matthew Barnes <mbarnes src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [evolution-data-server] Fix typos in imapx_list_response_parse_extended_item().
- Date: Sat, 17 Aug 2013 16:19:57 +0000 (UTC)
commit 06f1d1e3e985f7a9cb681f8b9034a1d70d937117
Author: Matthew Barnes <mbarnes redhat com>
Date: Sat Aug 17 12:21:04 2013 -0400
Fix typos in imapx_list_response_parse_extended_item().
camel/camel-imapx-list-response.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/camel/camel-imapx-list-response.c b/camel/camel-imapx-list-response.c
index a3727bb..4c68b1a 100644
--- a/camel/camel-imapx-list-response.c
+++ b/camel/camel-imapx-list-response.c
@@ -221,13 +221,13 @@ imapx_list_response_parse_extended_item (CamelIMAPXStream *stream,
* IMAP parser makes this more difficult. */
/* RFC 5258 "LIST-EXTENDED" */
- if (g_strcmp0 (item_tag, "CHILDINFO")) {
+ if (g_strcmp0 (item_tag, "CHILDINFO") == 0) {
item_value = imapx_list_response_parse_childinfo (
stream, response, cancellable, error);
success = (item_value != NULL);
/* RFC 5465 "NOTIFY" */
- } else if (g_strcmp0 (item_tag, "OLDNAME")) {
+ } else if (g_strcmp0 (item_tag, "OLDNAME") == 0) {
item_value = imapx_list_response_parse_oldname (
stream, response, cancellable, error);
success = (item_value != NULL);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]