aboutsummaryrefslogtreecommitdiffstats
path: root/camel/providers/imap/camel-imap-command.c
diff options
context:
space:
mode:
authorS.Çağlar Onur <caglar@uludag.org.tr>2004-12-01 11:03:09 +0800
committerMichael Zucci <zucchi@src.gnome.org>2004-12-01 11:03:09 +0800
commitb53f63d528ae0b1f4567b997d7a74552c370640f (patch)
tree861c3caf4afc0fc5f144e7cdb70529323a7a7a01 /camel/providers/imap/camel-imap-command.c
parent218b3bf88cfa2576e79b1a3a548d6d46493d982f (diff)
downloadgsoc2013-evolution-b53f63d528ae0b1f4567b997d7a74552c370640f.tar
gsoc2013-evolution-b53f63d528ae0b1f4567b997d7a74552c370640f.tar.gz
gsoc2013-evolution-b53f63d528ae0b1f4567b997d7a74552c370640f.tar.bz2
gsoc2013-evolution-b53f63d528ae0b1f4567b997d7a74552c370640f.tar.lz
gsoc2013-evolution-b53f63d528ae0b1f4567b997d7a74552c370640f.tar.xz
gsoc2013-evolution-b53f63d528ae0b1f4567b997d7a74552c370640f.tar.zst
gsoc2013-evolution-b53f63d528ae0b1f4567b997d7a74552c370640f.zip
** See bug #69446.
2004-11-28 S.Çağlar Onur <caglar@uludag.org.tr> ** See bug #69446. * evolution-2.0.2/camel/camel-charset-map.c (camel_charset_iso_to_windows) * evolution-2.0.2/camel/camel-filter-search.c (check_header) * evolution-2.0.2/camel/camel-folder-search.c (check_header) * evolution-2.0.2/camel/camel-folder-summary.c (message_info_new,summary_build_content_info,camel_system_flag) * evolution-2.0.2/camel/camel-html-parser.c (camel_html_parser_attr) * evolution-2.0.2/camel/camel-mime-filter-enriched.c (param_parse,camel_mime_filter_enriched_init) * evolution-2.0.2/camel/camel-mime-parser.c (folder_scan_step,main) * evolution-2.0.2/camel/camel-mime-utils.c (camel_header_param,camel_header_set_param,camel_content_type_is,camel_transfer_encoding_from_string,camel_conten t_type_format,camel_content_type_simple,camel_header_decode_date,header_raw_find_node) * evolution-2.0.2/camel/camel-sasl-digest-md5.c (decode_data_type) * evolution-2.0.2/camel/providers/imap/camel-imap-command.c (camel_imap_response_free) * evolution-2.0.2/camel/providers/imap/camel-imap-folder.c (camel_imap_folder_new,camel_imap_folder_selected,imap_refresh_info,camel_imap_folder_new,camel_i map_folder_selected) * evolution-2.0.2/camel/providers/imap/camel-imap-store.c (imap_get_capability,imap_connect_online,get_folder_online,get_folder_offline,get_subscribed_folde rs,folder_hash,get_folders) * evolution-2.0.2/camel/providers/pop3/camel-pop3-store.c (get_folder) * evolution-2.0.2/camel/tests/lib/folders.c: (test_folder_message_ops) some strcasecmp() calls changed with g_ascii_strcasecmp() for Turkish character conversiton problems [ http://www.i18nguy.com/unicode/turkish-i18n.html ] svn path=/trunk/; revision=28019
Diffstat (limited to 'camel/providers/imap/camel-imap-command.c')
-rw-r--r--camel/providers/imap/camel-imap-command.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/camel/providers/imap/camel-imap-command.c b/camel/providers/imap/camel-imap-command.c
index 0e8db51896..eeb3ecd302 100644
--- a/camel/providers/imap/camel-imap-command.c
+++ b/camel/providers/imap/camel-imap-command.c
@@ -549,7 +549,7 @@ camel_imap_response_free (CamelImapStore *store, CamelImapResponse *response)
if (response->folder) {
/* Check if it's something we need to handle. */
number = strtoul (resp + 2, &p, 10);
- if (!strcasecmp (p, " EXISTS")) {
+ if (!g_ascii_strcasecmp (p, " EXISTS")) {
exists = number;
} else if (!strcasecmp (p, " EXPUNGE")) {
if (!expunged) {