diff options
author | Milan Crha <mcrha@redhat.com> | 2013-02-22 22:32:51 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2013-02-22 22:32:51 +0800 |
commit | 2ea9684aa676126318642831471519d5680c6f83 (patch) | |
tree | dc922795aedadd9a931c19b6d57ec86bf0874f90 | |
parent | 3d7570426a00bbc066b8e3df25e8b4a523681461 (diff) | |
download | gsoc2013-evolution-2ea9684aa676126318642831471519d5680c6f83.tar gsoc2013-evolution-2ea9684aa676126318642831471519d5680c6f83.tar.gz gsoc2013-evolution-2ea9684aa676126318642831471519d5680c6f83.tar.bz2 gsoc2013-evolution-2ea9684aa676126318642831471519d5680c6f83.tar.lz gsoc2013-evolution-2ea9684aa676126318642831471519d5680c6f83.tar.xz gsoc2013-evolution-2ea9684aa676126318642831471519d5680c6f83.tar.zst gsoc2013-evolution-2ea9684aa676126318642831471519d5680c6f83.zip |
Bug #694363 - CALDAV navigation through Calendars or Tasklist is wrong
-rw-r--r-- | modules/cal-config-caldav/e-caldav-chooser.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/cal-config-caldav/e-caldav-chooser.c b/modules/cal-config-caldav/e-caldav-chooser.c index fefbc9829a..dcb29f1d5c 100644 --- a/modules/cal-config-caldav/e-caldav-chooser.c +++ b/modules/cal-config-caldav/e-caldav-chooser.c @@ -672,11 +672,11 @@ caldav_chooser_get_supported_component_set (xmlXPathContextPtr xp_ctx, if (name == NULL) continue; - if (g_ascii_strcasecmp (name, "VEVENT")) + if (g_ascii_strcasecmp (name, "VEVENT") == 0) set |= SUPPORTS_VEVENT; - else if (g_ascii_strcasecmp (name, "VTODO")) + else if (g_ascii_strcasecmp (name, "VTODO") == 0) set |= SUPPORTS_VTODO; - else if (g_ascii_strcasecmp (name, "VJOURNAL")) + else if (g_ascii_strcasecmp (name, "VJOURNAL") == 0) set |= SUPPORTS_VJOURNAL; g_free (name); |